* [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test
@ 2023-01-26 10:53 Petri Latvala
2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 1/3] runner: Don't override more results than requested Petri Latvala
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Petri Latvala @ 2023-01-26 10:53 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
If a test caused an abort condition to trigger, a pseudoresult
"igt@runner@aborted" would be generated, detailing which test caused
the condition. That was implemented in a simpler world where there
were no dynamic subtests and CI systems (i915-CI in particular) didn't
have much test resuming happening.
The generated pseudoresult was completely unable to point to a
particular dynamic subtest if the executed subtest had any, and there
could inherently be only one of them. When combined with the fact that
the pseudoresult doesn't have logs that could be used to automatically
point to particular bug reports, that made results filtering by
CIBugLog difficult.
With socket communications it's easier to inject information "in
between" test's logs and result overriding is designed into the
system. Thus, when using socket communications, this patch series will
make the abort-condition-causing test's result 'abort' instead of
using that pseudoresult.
The flow becomes a little bit messier with monitor_output() gaining
more and more out-parameters but those can be cleaned later.
Petri Latvala (3):
runner: Don't override more results than requested
runner: Refactor abort-checking to a helper function
runner: Use 'abort' as result if a test caused an abort
runner/executor.c | 121 +++++++++++++++++++++++++++++++++++++++------
runner/resultgen.c | 6 +++
2 files changed, 111 insertions(+), 16 deletions(-)
--
2.30.2
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] runner: Don't override more results than requested 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala @ 2023-01-26 10:53 ` Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 2/3] runner: Refactor abort-checking to a helper function Petri Latvala ` (5 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Petri Latvala @ 2023-01-26 10:53 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala When processing a resultoverride packet, the override is supposed to apply only to the most recent subtest or dynamic subtest. Properly clear the override so only those results get overridden. Signed-off-by: Petri Latvala <petri.latvala@intel.com> Cc: Arkadiusz Hiler <arek@hiler.eu> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/resultgen.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/runner/resultgen.c b/runner/resultgen.c index 596de786..b00bb6ba 100644 --- a/runner/resultgen.c +++ b/runner/resultgen.c @@ -1540,6 +1540,9 @@ static bool comms_handle_subtest_start(const struct runnerpacket *packet, /* Subtest starting message is not in logs with socket comms, inject it manually */ comms_inject_subtest_start_log(context, STARTING_SUBTEST, helper.subteststart.name); + free(context->subtestresult); + context->subtestresult = NULL; + break; default: assert(false); /* unreachable */ @@ -1669,6 +1672,9 @@ static bool comms_handle_dynamic_subtest_start(const struct runnerpacket *packet /* Dynamic subtest starting message is not in logs with socket comms, inject it manually */ comms_inject_subtest_start_log(context, STARTING_DYNAMIC_SUBTEST, helper.dynamicsubteststart.name); + free(context->dynamicsubtestresult); + context->dynamicsubtestresult = NULL; + break; default: assert(false); /* unreachable */ -- 2.30.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] runner: Refactor abort-checking to a helper function 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 1/3] runner: Don't override more results than requested Petri Latvala @ 2023-01-26 10:53 ` Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 3/3] runner: Use 'abort' as result if a test caused an abort Petri Latvala ` (4 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Petri Latvala @ 2023-01-26 10:53 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala Abort-condition checking at runtime will later use the helper differently. Signed-off-by: Petri Latvala <petri.latvala@intel.com> Cc: Arkadiusz Hiler <arek@hiler.eu> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/executor.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index 9d3623b4..5b4e84d1 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -348,21 +348,21 @@ static const struct { { 0, 0 }, }; -static char *need_to_abort(const struct settings* settings) +static char *_need_to_abort(int abort_mask, int log_level) { typeof(*abort_handlers) *it; for (it = abort_handlers; it->condition; it++) { char *abort; - if (!(settings->abort_mask & it->condition)) + if (!(abort_mask & it->condition)) continue; abort = it->handler(); if (!abort) continue; - if (settings->log_level >= LOG_LEVEL_NORMAL) + if (log_level >= LOG_LEVEL_NORMAL) errf("Aborting: %s\n", abort); return abort; @@ -371,6 +371,11 @@ static char *need_to_abort(const struct settings* settings) return NULL; } +static char *need_to_abort(const struct settings *settings) +{ + return _need_to_abort(settings->abort_mask, settings->log_level); +} + static void prune_subtest(struct job_list_entry *entry, const char *subtest) { char *excl; -- 2.30.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] runner: Use 'abort' as result if a test caused an abort 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 1/3] runner: Don't override more results than requested Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 2/3] runner: Refactor abort-checking to a helper function Petri Latvala @ 2023-01-26 10:53 ` Petri Latvala 2023-01-26 11:43 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: Using 'abort' as test result instead of a separate test Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Petri Latvala @ 2023-01-26 10:53 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala ... when possible, which is when using socket comms. v2: Handle abort conditions between dynamic subtests Signed-off-by: Petri Latvala <petri.latvala@intel.com> Cc: Arkadiusz Hiler <arek@hiler.eu> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/executor.c | 110 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 97 insertions(+), 13 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index 5b4e84d1..597cd7f5 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -376,6 +376,13 @@ static char *need_to_abort(const struct settings *settings) return _need_to_abort(settings->abort_mask, settings->log_level); } +/* Check for abort conditions that can be checked in a timely manner */ +static char *need_to_abort_time_sensitive(const struct settings *settings) +{ + /* Leave out ABORT_PING */ + return _need_to_abort(settings->abort_mask & ~ABORT_PING, settings->log_level); +} + static void prune_subtest(struct job_list_entry *entry, const char *subtest) { char *excl; @@ -863,7 +870,8 @@ static int monitor_output(pid_t child, int *outputs, double *time_spent, struct settings *settings, - char **abortreason) + char **abortreason, + bool *abort_already_written) { fd_set set; char *buf; @@ -883,6 +891,7 @@ static int monitor_output(pid_t child, bool aborting = false; size_t disk_usage = 0; bool socket_comms_used = false; /* whether the test actually uses comms */ + bool results_received = false; /* whether we already have test results that might need overriding if we detect an abort condition */ igt_gettime(&time_beg); time_last_activity = time_last_subtest = time_killed = time_beg; @@ -1106,8 +1115,6 @@ static int monitor_output(pid_t child, goto socket_end; } - write_packet_with_canary(outputs[_F_SOCKET], packet, settings->sync); - /* * runner sends EXEC itself before executing * the test, other types indicate the test @@ -1120,10 +1127,44 @@ static int monitor_output(pid_t child, packet->type == PACKETTYPE_DYNAMIC_SUBTEST_START) { time_last_subtest = time_now; disk_usage = 0; + + if (results_received && !aborting) { + /* + * We already have + * results for a + * dynamic subtest or + * a subtest. Before + * writing to disk + * that the next one + * starts, check + * whether it caused + * an abort condition. + */ + *abortreason = need_to_abort_time_sensitive(settings); + if (*abortreason) { + write_packet_with_canary(outputs[_F_SOCKET], + runnerpacket_log(STDOUT_FILENO, "\nThis test caused an abort condition: "), + false); + write_packet_with_canary(outputs[_F_SOCKET], + runnerpacket_log(STDOUT_FILENO, *abortreason), + false); + write_packet_with_canary(outputs[_F_SOCKET], + runnerpacket_resultoverride("abort"), + settings->sync); + + aborting = true; + *abort_already_written = true; + } + } } + write_packet_with_canary(outputs[_F_SOCKET], packet, settings->sync); disk_usage += packet->size; + if (packet->type == PACKETTYPE_SUBTEST_RESULT || + packet->type == PACKETTYPE_DYNAMIC_SUBTEST_RESULT) + results_received = true; + if (settings->log_level >= LOG_LEVEL_VERBOSE) { runnerpacket_read_helper helper = {}; const char *time; @@ -1593,7 +1634,8 @@ static int execute_next_entry(struct execute_state *state, struct job_list_entry *entry, int testdirfd, int resdirfd, int sigfd, sigset_t *sigmask, - char **abortreason) + char **abortreason, + bool *abort_already_written) { int dirfd; int outputs[_F_LAST]; @@ -1709,7 +1751,7 @@ static int execute_next_entry(struct execute_state *state, result = monitor_output(child, outfd, errfd, socketfd, kmsgfd, sigfd, outputs, time_spent, settings, - abortreason); + abortreason, abort_already_written); out_kmsgfd: close(kmsgfd); @@ -2207,6 +2249,31 @@ static void code_coverage_stop(struct settings *settings, const char *job_name, run_as_root(argv, sigfd, abortreason); } +/* Open the comms file if the test used socket comms */ +static int open_comms_if_valid(int resdirfd, size_t testidx) +{ + struct comms_visitor emptyvisitor = {}; + char name[32]; + int dirfd, commsfd; + + snprintf(name, sizeof(name), "%zd", testidx); + dirfd = openat(resdirfd, name, O_DIRECTORY | O_RDONLY); + if (dirfd < 0) + return -1; + + commsfd = openat(dirfd, "comms", O_RDWR); + close(dirfd); + + if (commsfd < 0) + return -1; + + if (comms_read_dump(commsfd, &emptyvisitor) == COMMSPARSE_SUCCESS) + return commsfd; + + close(commsfd); + return -1; +} + bool execute(struct execute_state *state, struct settings *settings, struct job_list *job_list) @@ -2347,6 +2414,7 @@ bool execute(struct execute_state *state, char *reason = NULL; char *job_name; int result; + bool already_written = false; if (should_die_because_signal(sigfd)) { status = false; @@ -2360,13 +2428,13 @@ bool execute(struct execute_state *state, if (reason == NULL) { result = execute_next_entry(state, - job_list->size, - &time_spent, - settings, - &job_list->entries[state->next], - testdirfd, resdirfd, - sigfd, &sigmask, - &reason); + job_list->size, + &time_spent, + settings, + &job_list->entries[state->next], + testdirfd, resdirfd, + sigfd, &sigmask, + &reason, &already_written); if (settings->cov_results_per_test) { code_coverage_stop(settings, job_name, sigfd, &reason); @@ -2379,7 +2447,23 @@ bool execute(struct execute_state *state, char *next = (state->next + 1 < job_list->size ? entry_display_name(&job_list->entries[state->next + 1]) : strdup("nothing")); - write_abort_file(resdirfd, reason, prev, next); + + if (!already_written) { + int commsfd; + + commsfd = open_comms_if_valid(resdirfd, state->next); + if (commsfd >= 0) { + lseek(commsfd, 0, SEEK_END); + write_packet_with_canary(commsfd, runnerpacket_log(STDOUT_FILENO, "\nThis test caused an abort condition: "), false); + write_packet_with_canary(commsfd, runnerpacket_log(STDOUT_FILENO, reason), false); + write_packet_with_canary(commsfd, runnerpacket_resultoverride("abort"), settings->sync); + + close(commsfd); + } else { + write_abort_file(resdirfd, reason, prev, next); + } + } + free(prev); free(next); free(reason); -- 2.30.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for runner: Using 'abort' as test result instead of a separate test 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala ` (2 preceding siblings ...) 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 3/3] runner: Use 'abort' as result if a test caused an abort Petri Latvala @ 2023-01-26 11:43 ` Patchwork 2023-01-26 13:12 ` [igt-dev] [PATCH i-g-t 0/3] " Kamil Konieczny ` (2 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-01-26 11:43 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3375 bytes --] == Series Details == Series: runner: Using 'abort' as test result instead of a separate test URL : https://patchwork.freedesktop.org/series/113380/ State : success == Summary == CI Bug Log - changes from IGT_7137 -> IGTPW_8405 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html Participating hosts (38 -> 23) ------------------------------ Missing (15): fi-rkl-11600 fi-rkl-guc fi-tgl-dsi fi-adl-ddr5 fi-bdw-gvtdvm fi-cfl-8700k fi-snb-2520m fi-ilk-650 fi-ctg-p8600 fi-hsw-4770 fi-kbl-8809g fi-pnv-d510 fi-bsw-kefka fi-skl-6700k2 fi-snb-2600 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8405: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_suspend@basic-s0@smem: - {bat-adlp-6}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/bat-adlp-6/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/bat-adlp-6/igt@gem_exec_suspend@basic-s0@smem.html - {bat-rpls-1}: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/bat-rpls-1/igt@gem_exec_suspend@basic-s0@smem.html Known issues ------------ Here are the changes found in IGTPW_8405 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - {bat-dg2-11}: [INCOMPLETE][4] ([i915#7834]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/bat-dg2-11/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/bat-dg2-11/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - {bat-rpls-1}: [INCOMPLETE][6] ([i915#6257]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/bat-rpls-1/igt@i915_selftest@live@requests.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/bat-rpls-1/igt@i915_selftest@live@requests.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7834]: https://gitlab.freedesktop.org/drm/intel/issues/7834 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7137 -> IGTPW_8405 CI-20190529: 20190529 CI_DRM_12640: cc7783f223ac644092bb8788f0750fc5c68aa00e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html IGT_7137: 5f7ea985ac0828bec5e1bbc101b7931bd7fb62e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@gem_mmap_offset@scaling-clear -igt@gem_mmap_offset@scaling-read -igt@gem_mmap_offset@scaling-write == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html [-- Attachment #2: Type: text/html, Size: 3886 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala ` (3 preceding siblings ...) 2023-01-26 11:43 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: Using 'abort' as test result instead of a separate test Patchwork @ 2023-01-26 13:12 ` Kamil Konieczny 2023-01-26 13:42 ` Petri Latvala 2023-01-26 17:47 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2023-01-27 13:27 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-01-26 13:12 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala Hi Petri, On 2023-01-26 at 12:53:35 +0200, Petri Latvala wrote: > If a test caused an abort condition to trigger, a pseudoresult > "igt@runner@aborted" would be generated, detailing which test caused > the condition. That was implemented in a simpler world where there > were no dynamic subtests and CI systems (i915-CI in particular) didn't > have much test resuming happening. > > The generated pseudoresult was completely unable to point to a > particular dynamic subtest if the executed subtest had any, and there > could inherently be only one of them. When combined with the fact that > the pseudoresult doesn't have logs that could be used to automatically > point to particular bug reports, that made results filtering by > CIBugLog difficult. > > With socket communications it's easier to inject information "in > between" test's logs and result overriding is designed into the > system. Thus, when using socket communications, this patch series will > make the abort-condition-causing test's result 'abort' instead of > using that pseudoresult. > > The flow becomes a little bit messier with monitor_output() gaining > more and more out-parameters but those can be cleaned later. Please copy this into description of your last patch 3/3 runner: Use 'abort' as result if a test caused an abort I would prefer to have all info about why patch is needed in git log rather than patchwork. For the series Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> -- Kamil > > Petri Latvala (3): > runner: Don't override more results than requested > runner: Refactor abort-checking to a helper function > runner: Use 'abort' as result if a test caused an abort > > runner/executor.c | 121 +++++++++++++++++++++++++++++++++++++++------ > runner/resultgen.c | 6 +++ > 2 files changed, 111 insertions(+), 16 deletions(-) > > -- > 2.30.2 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test 2023-01-26 13:12 ` [igt-dev] [PATCH i-g-t 0/3] " Kamil Konieczny @ 2023-01-26 13:42 ` Petri Latvala 0 siblings, 0 replies; 11+ messages in thread From: Petri Latvala @ 2023-01-26 13:42 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Arkadiusz Hiler On Thu, Jan 26, 2023 at 02:12:28PM +0100, Kamil Konieczny wrote: > Hi Petri, > > On 2023-01-26 at 12:53:35 +0200, Petri Latvala wrote: > > If a test caused an abort condition to trigger, a pseudoresult > > "igt@runner@aborted" would be generated, detailing which test caused > > the condition. That was implemented in a simpler world where there > > were no dynamic subtests and CI systems (i915-CI in particular) didn't > > have much test resuming happening. > > > > The generated pseudoresult was completely unable to point to a > > particular dynamic subtest if the executed subtest had any, and there > > could inherently be only one of them. When combined with the fact that > > the pseudoresult doesn't have logs that could be used to automatically > > point to particular bug reports, that made results filtering by > > CIBugLog difficult. > > > > With socket communications it's easier to inject information "in > > between" test's logs and result overriding is designed into the > > system. Thus, when using socket communications, this patch series will > > make the abort-condition-causing test's result 'abort' instead of > > using that pseudoresult. > > > > The flow becomes a little bit messier with monitor_output() gaining > > more and more out-parameters but those can be cleaned later. > > Please copy this into description of your last patch 3/3 > runner: Use 'abort' as result if a test caused an abort > > I would prefer to have all info about why patch is needed > in git log rather than patchwork. > > For the series > Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> I'll make that change, thanks. -- Petri Latvala ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for runner: Using 'abort' as test result instead of a separate test 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala ` (4 preceding siblings ...) 2023-01-26 13:12 ` [igt-dev] [PATCH i-g-t 0/3] " Kamil Konieczny @ 2023-01-26 17:47 ` Patchwork 2023-01-27 11:01 ` Petri Latvala 2023-01-27 13:27 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2023-01-26 17:47 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 21081 bytes --] == Series Details == Series: runner: Using 'abort' as test result instead of a separate test URL : https://patchwork.freedesktop.org/series/113380/ State : failure == Summary == CI Bug Log - changes from IGT_7137_full -> IGTPW_8405_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8405_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8405_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8405_full: ### IGT changes ### #### Possible regressions #### * igt@perf@stress-open-close: - shard-glk: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk1/igt@perf@stress-open-close.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk1/igt@perf@stress-open-close.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-rkl}: [PASS][3] -> [ABORT][4] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices@smem.html Known issues ------------ Here are the changes found in IGTPW_8405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - {shard-rkl}: [FAIL][7] ([i915#7742]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@fbdev@info: - {shard-rkl}: [SKIP][9] ([i915#2582]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@fbdev@info.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@fbdev@info.html * igt@fbdev@unaligned-write: - {shard-tglu}: [SKIP][11] ([i915#2582]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@fbdev@unaligned-write.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-5/igt@fbdev@unaligned-write.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][13] ([i915#6252]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][15] ([fdo#103375]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][17] ([i915#2842]) -> [PASS][18] +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][19] ([i915#3281]) -> [PASS][20] +14 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - {shard-rkl}: [SKIP][21] ([i915#7276]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-priority-all: - {shard-rkl}: [INCOMPLETE][23] -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_whisper@basic-fds-priority-all.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][25] ([fdo#111656]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_mmap_gtt@coherency.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][27] ([i915#3282]) -> [PASS][28] +6 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][29] ([i915#2527]) -> [PASS][30] +4 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-dg1}: [SKIP][31] ([i915#1397]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - {shard-tglu}: [SKIP][33] ([i915#7651]) -> [PASS][34] +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-glk: [FAIL][35] ([i915#79]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - {shard-rkl}: [SKIP][37] ([i915#1849] / [i915#4098]) -> [PASS][38] +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_psr@primary_page_flip: - {shard-rkl}: [SKIP][39] ([i915#1072]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_psr@primary_page_flip.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_psr@primary_page_flip.html * igt@kms_vblank@pipe-b-wait-idle-hang: - {shard-rkl}: [SKIP][41] ([i915#1845] / [i915#4098]) -> [PASS][42] +5 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@kms_vblank@pipe-b-wait-idle-hang.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_vblank@pipe-b-wait-idle-hang.html * igt@kms_vblank@pipe-d-query-idle: - {shard-tglu}: [SKIP][43] ([i915#1845] / [i915#7651]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_vblank@pipe-d-query-idle.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_vblank@pipe-d-query-idle.html * igt@perf@gen8-unprivileged-single-ctx-counters: - {shard-rkl}: [SKIP][45] ([i915#2436]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][47] ([i915#1722]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@polling-small-buf.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@polling-small-buf.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][49] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@prime_vgem@basic-write.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7137 -> IGTPW_8405 CI-20190529: 20190529 CI_DRM_12640: cc7783f223ac644092bb8788f0750fc5c68aa00e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html IGT_7137: 5f7ea985ac0828bec5e1bbc101b7931bd7fb62e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html [-- Attachment #2: Type: text/html, Size: 13624 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for runner: Using 'abort' as test result instead of a separate test 2023-01-26 17:47 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2023-01-27 11:01 ` Petri Latvala 2023-01-29 9:21 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 11+ messages in thread From: Petri Latvala @ 2023-01-27 11:01 UTC (permalink / raw) To: igt-dev, Sai Nandan Yedireswarapu On Thu, Jan 26, 2023 at 05:47:02PM +0000, Patchwork wrote: > == Series Details == > > Series: runner: Using 'abort' as test result instead of a separate test > URL : https://patchwork.freedesktop.org/series/113380/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7137_full -> IGTPW_8405_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8405_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8405_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html > > Participating hosts (11 -> 11) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8405_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@perf@stress-open-close: > - shard-glk: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk1/igt@perf@stress-open-close.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk1/igt@perf@stress-open-close.html These regressions are related to the change, but they are existing issues in a different result. Although this one doesn't have a bug filed, just the generic "aborted" bug report. Please file a new bug about this. > > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@gem_exec_suspend@basic-s4-devices@smem: > - {shard-rkl}: [PASS][3] -> [ABORT][4] +1 similar issue > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices@smem.html This basic-s4-devices@smem abort should be mapped to https://gitlab.freedesktop.org/drm/intel/-/issues/3810 -- Petri Latvala > > > Known issues > ------------ > > Here are the changes found in IGTPW_8405_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_fair@basic-pace@vcs0: > - shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html > > > #### Possible fixes #### > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - {shard-rkl}: [FAIL][7] ([i915#7742]) -> [PASS][8] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@fbdev@info: > - {shard-rkl}: [SKIP][9] ([i915#2582]) -> [PASS][10] > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@fbdev@info.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@fbdev@info.html > > * igt@fbdev@unaligned-write: > - {shard-tglu}: [SKIP][11] ([i915#2582]) -> [PASS][12] > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@fbdev@unaligned-write.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-5/igt@fbdev@unaligned-write.html > > * igt@gem_ctx_persistence@legacy-engines-hang@blt: > - {shard-rkl}: [SKIP][13] ([i915#6252]) -> [PASS][14] > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_ctx_persistence@legacy-engines-hang@blt.html > > * igt@gem_eio@in-flight-suspend: > - {shard-rkl}: [FAIL][15] ([fdo#103375]) -> [PASS][16] > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_eio@in-flight-suspend.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_eio@in-flight-suspend.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - {shard-rkl}: [FAIL][17] ([i915#2842]) -> [PASS][18] +1 similar issue > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_reloc@basic-write-read-noreloc: > - {shard-rkl}: [SKIP][19] ([i915#3281]) -> [PASS][20] +14 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html > > * igt@gem_exec_schedule@semaphore-power: > - {shard-rkl}: [SKIP][21] ([i915#7276]) -> [PASS][22] > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html > > * igt@gem_exec_whisper@basic-fds-priority-all: > - {shard-rkl}: [INCOMPLETE][23] -> [PASS][24] > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_whisper@basic-fds-priority-all.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_exec_whisper@basic-fds-priority-all.html > > * igt@gem_mmap_gtt@coherency: > - {shard-rkl}: [SKIP][25] ([fdo#111656]) -> [PASS][26] > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_mmap_gtt@coherency.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_mmap_gtt@coherency.html > > * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > - {shard-rkl}: [SKIP][27] ([i915#3282]) -> [PASS][28] +6 similar issues > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html > > * igt@gen9_exec_parse@valid-registers: > - {shard-rkl}: [SKIP][29] ([i915#2527]) -> [PASS][30] +4 similar issues > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - {shard-dg1}: [SKIP][31] ([i915#1397]) -> [PASS][32] > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@kms_big_fb@x-tiled-8bpp-rotate-0: > - {shard-tglu}: [SKIP][33] ([i915#7651]) -> [PASS][34] +3 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html > > * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: > - shard-glk: [FAIL][35] ([i915#79]) -> [PASS][36] > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html > > * igt@kms_frontbuffer_tracking@fbc-tiling-linear: > - {shard-rkl}: [SKIP][37] ([i915#1849] / [i915#4098]) -> [PASS][38] +2 similar issues > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html > > * igt@kms_psr@primary_page_flip: > - {shard-rkl}: [SKIP][39] ([i915#1072]) -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_psr@primary_page_flip.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_psr@primary_page_flip.html > > * igt@kms_vblank@pipe-b-wait-idle-hang: > - {shard-rkl}: [SKIP][41] ([i915#1845] / [i915#4098]) -> [PASS][42] +5 similar issues > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@kms_vblank@pipe-b-wait-idle-hang.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_vblank@pipe-b-wait-idle-hang.html > > * igt@kms_vblank@pipe-d-query-idle: > - {shard-tglu}: [SKIP][43] ([i915#1845] / [i915#7651]) -> [PASS][44] +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_vblank@pipe-d-query-idle.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_vblank@pipe-d-query-idle.html > > * igt@perf@gen8-unprivileged-single-ctx-counters: > - {shard-rkl}: [SKIP][45] ([i915#2436]) -> [PASS][46] > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html > > * igt@perf@polling-small-buf: > - {shard-rkl}: [FAIL][47] ([i915#1722]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@polling-small-buf.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@polling-small-buf.html > > * igt@prime_vgem@basic-write: > - {shard-rkl}: [SKIP][49] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@prime_vgem@basic-write.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@prime_vgem@basic-write.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 > [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 > [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 > [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 > [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 > [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 > [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 > [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 > [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 > [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 > [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 > [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 > [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 > [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 > [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 > [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 > [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 > [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463 > [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 > [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 > [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 > [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7137 -> IGTPW_8405 > > CI-20190529: 20190529 > CI_DRM_12640: cc7783f223ac644092bb8788f0750fc5c68aa00e @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html > IGT_7137: 5f7ea985ac0828bec5e1bbc101b7931bd7fb62e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for runner: Using 'abort' as test result instead of a separate test 2023-01-27 11:01 ` Petri Latvala @ 2023-01-29 9:21 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 11+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-01-29 9:21 UTC (permalink / raw) To: Latvala, Petri, igt-dev@lists.freedesktop.org; +Cc: Veesam, RavitejaX Hi, Issue re-reported, https://patchwork.freedesktop.org/series/113380/ Thanks, Y Sai Nandan -----Original Message----- From: Latvala, Petri <petri.latvala@intel.com> Sent: Friday, January 27, 2023 4:32 PM To: igt-dev@lists.freedesktop.org; Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for runner: Using 'abort' as test result instead of a separate test On Thu, Jan 26, 2023 at 05:47:02PM +0000, Patchwork wrote: > == Series Details == > > Series: runner: Using 'abort' as test result instead of a separate test > URL : https://patchwork.freedesktop.org/series/113380/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7137_full -> IGTPW_8405_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8405_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8405_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html > > Participating hosts (11 -> 11) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8405_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@perf@stress-open-close: > - shard-glk: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk1/igt@perf@stress-open-close.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk1/igt@per > f@stress-open-close.html These regressions are related to the change, but they are existing issues in a different result. Although this one doesn't have a bug filed, just the generic "aborted" bug report. Please file a new bug about this. > > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@gem_exec_suspend@basic-s4-devices@smem: > - {shard-rkl}: [PASS][3] -> [ABORT][4] +1 similar issue > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-2/igt@ge > m_exec_suspend@basic-s4-devices@smem.html This basic-s4-devices@smem abort should be mapped to https://gitlab.freedesktop.org/drm/intel/-/issues/3810 -- Petri Latvala > > > Known issues > ------------ > > Here are the changes found in IGTPW_8405_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_fair@basic-pace@vcs0: > - shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html > > > #### Possible fixes #### > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - {shard-rkl}: [FAIL][7] ([i915#7742]) -> [PASS][8] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@fbdev@info: > - {shard-rkl}: [SKIP][9] ([i915#2582]) -> [PASS][10] > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@fbdev@info.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@fbdev@info.html > > * igt@fbdev@unaligned-write: > - {shard-tglu}: [SKIP][11] ([i915#2582]) -> [PASS][12] > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@fbdev@unaligned-write.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-5/igt@fbdev@unaligned-write.html > > * igt@gem_ctx_persistence@legacy-engines-hang@blt: > - {shard-rkl}: [SKIP][13] ([i915#6252]) -> [PASS][14] > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_ctx_persistence@legacy-engines-hang@blt.html > > * igt@gem_eio@in-flight-suspend: > - {shard-rkl}: [FAIL][15] ([fdo#103375]) -> [PASS][16] > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_eio@in-flight-suspend.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_eio@in-flight-suspend.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - {shard-rkl}: [FAIL][17] ([i915#2842]) -> [PASS][18] +1 similar issue > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_reloc@basic-write-read-noreloc: > - {shard-rkl}: [SKIP][19] ([i915#3281]) -> [PASS][20] +14 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html > > * igt@gem_exec_schedule@semaphore-power: > - {shard-rkl}: [SKIP][21] ([i915#7276]) -> [PASS][22] > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html > > * igt@gem_exec_whisper@basic-fds-priority-all: > - {shard-rkl}: [INCOMPLETE][23] -> [PASS][24] > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_whisper@basic-fds-priority-all.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_exec_whisper@basic-fds-priority-all.html > > * igt@gem_mmap_gtt@coherency: > - {shard-rkl}: [SKIP][25] ([fdo#111656]) -> [PASS][26] > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_mmap_gtt@coherency.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_mmap_gtt@coherency.html > > * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > - {shard-rkl}: [SKIP][27] ([i915#3282]) -> [PASS][28] +6 similar issues > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html > > * igt@gen9_exec_parse@valid-registers: > - {shard-rkl}: [SKIP][29] ([i915#2527]) -> [PASS][30] +4 similar issues > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html > > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > - {shard-dg1}: [SKIP][31] ([i915#1397]) -> [PASS][32] > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@kms_big_fb@x-tiled-8bpp-rotate-0: > - {shard-tglu}: [SKIP][33] ([i915#7651]) -> [PASS][34] +3 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html > > * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: > - shard-glk: [FAIL][35] ([i915#79]) -> [PASS][36] > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html > > * igt@kms_frontbuffer_tracking@fbc-tiling-linear: > - {shard-rkl}: [SKIP][37] ([i915#1849] / [i915#4098]) -> [PASS][38] +2 similar issues > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html > > * igt@kms_psr@primary_page_flip: > - {shard-rkl}: [SKIP][39] ([i915#1072]) -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_psr@primary_page_flip.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_psr@primary_page_flip.html > > * igt@kms_vblank@pipe-b-wait-idle-hang: > - {shard-rkl}: [SKIP][41] ([i915#1845] / [i915#4098]) -> [PASS][42] +5 similar issues > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@kms_vblank@pipe-b-wait-idle-hang.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_vblank@pipe-b-wait-idle-hang.html > > * igt@kms_vblank@pipe-d-query-idle: > - {shard-tglu}: [SKIP][43] ([i915#1845] / [i915#7651]) -> [PASS][44] +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_vblank@pipe-d-query-idle.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_vblank@pipe-d-query-idle.html > > * igt@perf@gen8-unprivileged-single-ctx-counters: > - {shard-rkl}: [SKIP][45] ([i915#2436]) -> [PASS][46] > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html > > * igt@perf@polling-small-buf: > - {shard-rkl}: [FAIL][47] ([i915#1722]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@polling-small-buf.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@polling-small-buf.html > > * igt@prime_vgem@basic-write: > - {shard-rkl}: [SKIP][49] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@prime_vgem@basic-write.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@prime_vgem@basic-write.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 > [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 > [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 > [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 > [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 > [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 > [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 > [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 > [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 > [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 > [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 > [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 > [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 > [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 > [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 > [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 > [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 > [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463 > [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 > [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 > [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 > [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 > [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 > [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 > [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 > [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7137 -> IGTPW_8405 > > CI-20190529: 20190529 > CI_DRM_12640: cc7783f223ac644092bb8788f0750fc5c68aa00e @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html > IGT_7137: 5f7ea985ac0828bec5e1bbc101b7931bd7fb62e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for runner: Using 'abort' as test result instead of a separate test 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala ` (5 preceding siblings ...) 2023-01-26 17:47 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2023-01-27 13:27 ` Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-01-27 13:27 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 20909 bytes --] == Series Details == Series: runner: Using 'abort' as test result instead of a separate test URL : https://patchwork.freedesktop.org/series/113380/ State : success == Summary == CI Bug Log - changes from IGT_7137_full -> IGTPW_8405_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8405_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-rkl}: [PASS][1] -> [ABORT][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices@smem.html Known issues ------------ Here are the changes found in IGTPW_8405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html * igt@perf@stress-open-close: - shard-glk: [PASS][5] -> [ABORT][6] ([i915#5213]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk1/igt@perf@stress-open-close.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk1/igt@perf@stress-open-close.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - {shard-rkl}: [FAIL][7] ([i915#7742]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@fbdev@info: - {shard-rkl}: [SKIP][9] ([i915#2582]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@fbdev@info.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@fbdev@info.html * igt@fbdev@unaligned-write: - {shard-tglu}: [SKIP][11] ([i915#2582]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@fbdev@unaligned-write.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-5/igt@fbdev@unaligned-write.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][13] ([i915#6252]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][15] ([fdo#103375]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][17] ([i915#2842]) -> [PASS][18] +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][19] ([i915#3281]) -> [PASS][20] +14 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - {shard-rkl}: [SKIP][21] ([i915#7276]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-priority-all: - {shard-rkl}: [INCOMPLETE][23] ([i915#7967]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@gem_exec_whisper@basic-fds-priority-all.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-3/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][25] ([fdo#111656]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_mmap_gtt@coherency.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][27] ([i915#3282]) -> [PASS][28] +6 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][29] ([i915#2527]) -> [PASS][30] +4 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-dg1}: [SKIP][31] ([i915#1397]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - {shard-tglu}: [SKIP][33] ([i915#7651]) -> [PASS][34] +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-glk: [FAIL][35] ([i915#79]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - {shard-rkl}: [SKIP][37] ([i915#1849] / [i915#4098]) -> [PASS][38] +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_psr@primary_page_flip: - {shard-rkl}: [SKIP][39] ([i915#1072]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@kms_psr@primary_page_flip.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_psr@primary_page_flip.html * igt@kms_vblank@pipe-b-wait-idle-hang: - {shard-rkl}: [SKIP][41] ([i915#1845] / [i915#4098]) -> [PASS][42] +5 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-4/igt@kms_vblank@pipe-b-wait-idle-hang.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-6/igt@kms_vblank@pipe-b-wait-idle-hang.html * igt@kms_vblank@pipe-d-query-idle: - {shard-tglu}: [SKIP][43] ([i915#1845] / [i915#7651]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-tglu-6/igt@kms_vblank@pipe-d-query-idle.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-tglu-2/igt@kms_vblank@pipe-d-query-idle.html * igt@perf@gen8-unprivileged-single-ctx-counters: - {shard-rkl}: [SKIP][45] ([i915#2436]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][47] ([i915#1722]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@perf@polling-small-buf.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@perf@polling-small-buf.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][49] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7137/shard-rkl-3/igt@prime_vgem@basic-write.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/shard-rkl-5/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7967]: https://gitlab.freedesktop.org/drm/intel/issues/7967 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7137 -> IGTPW_8405 CI-20190529: 20190529 CI_DRM_12640: cc7783f223ac644092bb8788f0750fc5c68aa00e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html IGT_7137: 5f7ea985ac0828bec5e1bbc101b7931bd7fb62e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8405/index.html [-- Attachment #2: Type: text/html, Size: 13438 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-01-29 9:21 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-26 10:53 [igt-dev] [PATCH i-g-t 0/3] runner: Using 'abort' as test result instead of a separate test Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 1/3] runner: Don't override more results than requested Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 2/3] runner: Refactor abort-checking to a helper function Petri Latvala 2023-01-26 10:53 ` [igt-dev] [PATCH i-g-t 3/3] runner: Use 'abort' as result if a test caused an abort Petri Latvala 2023-01-26 11:43 ` [igt-dev] ✓ Fi.CI.BAT: success for runner: Using 'abort' as test result instead of a separate test Patchwork 2023-01-26 13:12 ` [igt-dev] [PATCH i-g-t 0/3] " Kamil Konieczny 2023-01-26 13:42 ` Petri Latvala 2023-01-26 17:47 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2023-01-27 11:01 ` Petri Latvala 2023-01-29 9:21 ` Yedireswarapu, SaiX Nandan 2023-01-27 13:27 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox