* [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg
@ 2024-10-18 16:18 Kamil Konieczny
2024-10-18 16:18 ` [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump Kamil Konieczny
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Kamil Konieczny @ 2024-10-18 16:18 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny, Petri Latvala, Karol Krol, Ewelina Musial
There are two patches, first is a check for write error which could
happen at full disk, second is a revised solution to a problem with
dmesg dumping exeeding disk limit in runner.
Previous proposed solution: runner: check disk limit at dumping kmsg
https://patchwork.freedesktop.org/series/114353/
Gitlab issue: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/129
Cc: Petri Latvala <adrinael@adrinael.net>
Cc: Karol Krol <karol.krol@intel.com>
Cc: Ewelina Musial <ewelina.musial@intel.com>
Kamil Konieczny (2):
runner/executor: Check for error at writing dmesg dump
runner/executor: Limit reading dmesg to chunks
runner/executor.c | 65 +++++++++++++++++++++++++++++++++++++++--------
1 file changed, 55 insertions(+), 10 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny @ 2024-10-18 16:18 ` Kamil Konieczny 2024-10-24 13:45 ` Krzysztof Karas 2024-10-18 16:18 ` [PATCH i-g-t 2/2] runner/executor: Limit reading dmesg to chunks Kamil Konieczny ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Kamil Konieczny @ 2024-10-18 16:18 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny In processing kernel dmesg there are checks for error at reading so add also one for writing. Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/executor.c | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index ac73e1dde..3939f92f1 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) bool underflow_once = false; char cont; char buf[2048]; - ssize_t r; + ssize_t r, w; long written = 0; if (kmsgfd < 0) @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) return written; } - write(outfd, buf, r); - written += r; + w = write(outfd, buf, r); + if (w < r) { + if (w == -1 && errno == EINTR) + w = write(outfd, buf, r); + + if (w < r && w >= 0) + w += write(outfd, buf + w, r - w); + + if (w < r) { + long err = -errno; + + if (err) { + errf("Write error while processing dmesg, errno=%d\n", errno); + } else { + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); + err = -1; + } + if (comparefd >= 0) + close(comparefd); + + return err; + } + } + + written += r; if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", &flags, &seq, &usec, &cont) == 4) { /* -- 2.47.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump 2024-10-18 16:18 ` [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump Kamil Konieczny @ 2024-10-24 13:45 ` Krzysztof Karas 2024-11-13 15:15 ` Kamil Konieczny 0 siblings, 1 reply; 9+ messages in thread From: Krzysztof Karas @ 2024-10-24 13:45 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev Hi Kamil, I looked through the change and found only one thing that could be added, the rest looks good to me. On 2024-10-18 at 18:18:19 +0200, Kamil Konieczny wrote: > In processing kernel dmesg there are checks for error at reading > so add also one for writing. > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > runner/executor.c | 29 ++++++++++++++++++++++++++--- > 1 file changed, 26 insertions(+), 3 deletions(-) > > diff --git a/runner/executor.c b/runner/executor.c > index ac73e1dde..3939f92f1 100644 > --- a/runner/executor.c > +++ b/runner/executor.c > @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) > bool underflow_once = false; > char cont; > char buf[2048]; > - ssize_t r; > + ssize_t r, w; > long written = 0; > > if (kmsgfd < 0) > @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) > return written; > } > > - write(outfd, buf, r); > - written += r; > + w = write(outfd, buf, r); > + if (w < r) { > + if (w == -1 && errno == EINTR) > + w = write(outfd, buf, r); > + > + if (w < r && w >= 0) > + w += write(outfd, buf + w, r - w); > + > + if (w < r) { > + long err = -errno; > + > + if (err) { > + errf("Write error while processing dmesg, errno=%d\n", errno); You could include `w` and `r` values into this log as well. Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> > + } else { > + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); > + err = -1; > + } > > + if (comparefd >= 0) > + close(comparefd); > + > + return err; > + } > + } > + > + written += r; > if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", > &flags, &seq, &usec, &cont) == 4) { > /* > -- > 2.47.0 > Best Regards, Krzysztof K ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump 2024-10-24 13:45 ` Krzysztof Karas @ 2024-11-13 15:15 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-11-13 15:15 UTC (permalink / raw) To: igt-dev; +Cc: Krzysztof Karas Hi Krzysztof, On 2024-10-24 at 13:45:48 +0000, Krzysztof Karas wrote: > Hi Kamil, > > I looked through the change and found only one thing that could be > added, the rest looks good to me. > > On 2024-10-18 at 18:18:19 +0200, Kamil Konieczny wrote: > > In processing kernel dmesg there are checks for error at reading > > so add also one for writing. > > > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > --- > > runner/executor.c | 29 ++++++++++++++++++++++++++--- > > 1 file changed, 26 insertions(+), 3 deletions(-) > > > > diff --git a/runner/executor.c b/runner/executor.c > > index ac73e1dde..3939f92f1 100644 > > --- a/runner/executor.c > > +++ b/runner/executor.c > > @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) > > bool underflow_once = false; > > char cont; > > char buf[2048]; > > - ssize_t r; > > + ssize_t r, w; > > long written = 0; > > > > if (kmsgfd < 0) > > @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) > > return written; > > } > > > > - write(outfd, buf, r); > > - written += r; > > + w = write(outfd, buf, r); > > + if (w < r) { > > + if (w == -1 && errno == EINTR) > > + w = write(outfd, buf, r); > > + > > + if (w < r && w >= 0) > > + w += write(outfd, buf + w, r - w); > > + > > + if (w < r) { > > + long err = -errno; > > + > > + if (err) { > > + errf("Write error while processing dmesg, errno=%d\n", errno); > You could include `w` and `r` values into this log as well. Done. Regards, Kamil > Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> > > + } else { > > + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); > > + err = -1; > > + } > > > > + if (comparefd >= 0) > > + close(comparefd); > > + > > + return err; > > + } > > + } > > + > > + written += r; > > if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", > > &flags, &seq, &usec, &cont) == 4) { > > /* > > -- > > 2.47.0 > > > > Best Regards, > Krzysztof K ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] runner/executor: Limit reading dmesg to chunks 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny 2024-10-18 16:18 ` [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump Kamil Konieczny @ 2024-10-18 16:18 ` Kamil Konieczny 2024-10-18 17:14 ` ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-10-18 16:18 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny, Petri Latvala, Karol Krol, Ewelina Musial There was no disk limit checks in reading kernel dmesg and that could lead to writing really huge dumps longer than 400MB, greatly exceeding disk limits used by CI and hardly useful for developers. Make a dmesg dumping in chunks, size depending on number of CPUs present, with a minimum of 64KB. This could also allow to kick in disk limits checks if a driver starts spilling messages into dmesg. Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/129 Cc: Petri Latvala <adrinael@adrinael.net> Cc: Karol Krol <karol.krol@intel.com> Cc: Ewelina Musial <ewelina.musial@intel.com> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/executor.c | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index 3939f92f1..9283aad97 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -585,13 +585,14 @@ void close_outputs(int *fds) } /* Returns the number of bytes written to disk, or a negative number on error */ -static long dump_dmesg(int kmsgfd, int outfd) +static long dump_dmesg(int kmsgfd, int outfd, ssize_t size) { /* * Write kernel messages to the log file until we reach - * 'now'. Unfortunately, /dev/kmsg doesn't support seeking to - * -1 from SEEK_END so we need to use a second fd to read a - * message to match against, or stop when we reach EAGAIN. + * 'now' or we read at least size bytes. Unfortunately, + * /dev/kmsg doesn't support seeking to -1 from SEEK_END + * so we need to use a second fd to read a message to + * match against, or stop when we reach EAGAIN. */ int comparefd; @@ -606,6 +607,9 @@ static long dump_dmesg(int kmsgfd, int outfd) if (kmsgfd < 0) return 0; + if (size <= 0) + return 0; + comparefd = open("/dev/kmsg", O_RDONLY | O_NONBLOCK); if (comparefd < 0) { errf("Error opening another fd for /dev/kmsg\n"); @@ -690,6 +694,13 @@ static long dump_dmesg(int kmsgfd, int outfd) if (seq >= cmpseq) return written; } + + if (written >= size) { + if (comparefd >= 0) + close(comparefd); + + return written; + } } } @@ -883,6 +894,14 @@ static void write_packet_with_canary(int fd, struct runnerpacket *packet, bool s /* TODO: Refactor this macro from here and from various tests to lib */ #define KB(x) ((x) * 1024) +static size_t calc_last_dmesg_chunk(size_t limit, size_t disk_usage) +{ + if (!limit) + return KB(128 * 1024); /* 128MB */ + + return limit > disk_usage ? limit - disk_usage : 0; +} + /* * Returns: * =0 - Success @@ -915,6 +934,7 @@ static int monitor_output(pid_t child, unsigned long taints = 0; bool aborting = false; size_t disk_usage = 0; + size_t dmsg_chunk_size = 4096 * max_t(size_t, sysconf(_SC_NPROCESSORS_ONLN), 16); 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 */ @@ -1244,7 +1264,7 @@ static int monitor_output(pid_t child, time_last_activity = time_now; - dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG]); + dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG], dmsg_chunk_size); if (settings->sync) fdatasync(outputs[_F_DMESG]); @@ -1482,7 +1502,8 @@ static int monitor_output(pid_t child, asprintf(abortreason, "Child refuses to die, tainted 0x%lx.", taints); } - dump_dmesg(kmsgfd, outputs[_F_DMESG]); + dmsg_chunk_size = calc_last_dmesg_chunk(settings->disk_usage_limit, disk_usage); + dump_dmesg(kmsgfd, outputs[_F_DMESG], dmsg_chunk_size); if (settings->sync) fdatasync(outputs[_F_DMESG]); @@ -1508,7 +1529,8 @@ static int monitor_output(pid_t child, } } - dump_dmesg(kmsgfd, outputs[_F_DMESG]); + dmsg_chunk_size = calc_last_dmesg_chunk(settings->disk_usage_limit, disk_usage); + dump_dmesg(kmsgfd, outputs[_F_DMESG], dmsg_chunk_size); if (settings->sync) fdatasync(outputs[_F_DMESG]); -- 2.47.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny 2024-10-18 16:18 ` [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump Kamil Konieczny 2024-10-18 16:18 ` [PATCH i-g-t 2/2] runner/executor: Limit reading dmesg to chunks Kamil Konieczny @ 2024-10-18 17:14 ` Patchwork 2024-10-18 17:36 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-18 17:14 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3616 bytes --] == Series Details == Series: runner: Allow limits at dumping dmesg URL : https://patchwork.freedesktop.org/series/140182/ State : success == Summary == CI Bug Log - changes from IGT_8080 -> IGTPW_11937 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-rplp-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11937 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - fi-bsw-n3050: [PASS][1] -> [DMESG-FAIL][2] ([i915#12172]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/fi-bsw-n3050/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/fi-bsw-n3050/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - fi-bsw-n3050: [PASS][3] -> [DMESG-FAIL][4] ([i915#12435]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/fi-bsw-n3050/igt@i915_selftest@live@active.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/fi-bsw-n3050/igt@i915_selftest@live@active.html #### Possible fixes #### * igt@i915_selftest@live: - {bat-arlh-3}: [ABORT][5] ([i915#12133]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/bat-arlh-3/igt@i915_selftest@live.html - bat-arlh-2: [ABORT][7] ([i915#12133]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - {bat-arlh-3}: [ABORT][9] ([i915#12061]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [ABORT][11] ([i915#12061]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/bat-arlh-2/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12172 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8080 -> IGTPW_11937 * Linux: CI_DRM_15559 -> CI_DRM_15561 CI-20190529: 20190529 CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15561: cebb76fe419dd92609fb86e59c9671387c5325a3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11937: 5b49646ff8c7e985065063bef5927cbb23961cc9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/index.html [-- Attachment #2: Type: text/html, Size: 4483 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for runner: Allow limits at dumping dmesg 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny ` (2 preceding siblings ...) 2024-10-18 17:14 ` ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg Patchwork @ 2024-10-18 17:36 ` Patchwork 2024-10-18 18:50 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-19 8:41 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-18 17:36 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3661 bytes --] == Series Details == Series: runner: Allow limits at dumping dmesg URL : https://patchwork.freedesktop.org/series/140182/ State : success == Summary == CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11937_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11937_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#1861]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#288]) +32 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#2229]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][8] ([Intel XE#2874]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11937 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3 IGTPW_11937: 5b49646ff8c7e985065063bef5927cbb23961cc9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667 xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3: cebb76fe419dd92609fb86e59c9671387c5325a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/index.html [-- Attachment #2: Type: text/html, Size: 4362 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for runner: Allow limits at dumping dmesg 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny ` (3 preceding siblings ...) 2024-10-18 17:36 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-18 18:50 ` Patchwork 2024-10-19 8:41 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-18 18:50 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100257 bytes --] == Series Details == Series: runner: Allow limits at dumping dmesg URL : https://patchwork.freedesktop.org/series/140182/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15561_full -> IGTPW_11937_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11937_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11937_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11937/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11937_full: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@verify-random: - shard-dg2: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-6/igt@gem_lmem_swapping@verify-random.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@gem_lmem_swapping@verify-random.html Known issues ------------ Here are the changes found in IGTPW_11937_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +17 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@drm_fdinfo@busy@vcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@drm_fdinfo@busy@vcs1.html * igt@fbdev@pan: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#2582]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@fbdev@pan.html * igt@fbdev@unaligned-write: - shard-dg2: [PASS][11] -> [SKIP][12] ([i915#2582]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@fbdev@unaligned-write.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@fbdev@unaligned-write.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][18] -> [FAIL][19] ([i915#12027] / [i915#12031]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-1/igt@gem_ctx_engines@invalid-engines.html - shard-tglu: NOTRUN -> [FAIL][20] ([i915#12027] / [i915#12031]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-9/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@gem_ctx_sseu@engines.html - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][23] -> [ABORT][24] ([i915#10030] / [i915#7975] / [i915#8213]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-4/igt@gem_eio@hibernate.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-10/igt@gem_eio@hibernate.html - shard-dg2: [PASS][25] -> [ABORT][26] ([i915#10030] / [i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@gem_eio@hibernate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][27] ([i915#5784]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][28] -> [FAIL][29] ([i915#5784]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-12/igt@gem_eio@unwedge-stress.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@gem_exec_fair@basic-none.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-7/igt@gem_exec_fair@basic-none.html - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-6/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-solo: - shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@gem_exec_fence@submit67.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#5107]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][38] ([i915#5107]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][43] ([i915#12296]) +7 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@gem_exec_schedule@pi-ringfull@ccs0.html - shard-mtlp: NOTRUN -> [FAIL][44] ([i915#12296]) +6 other tests fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-8/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_exec_schedule@pi-ringfull@rcs0: - shard-dg1: NOTRUN -> [FAIL][45] ([i915#12296]) +5 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@gem_exec_schedule@pi-ringfull@rcs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@gem_exec_schedule@preempt-queue.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#7276]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@gem_lmem_swapping@heavy-multi.html - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-4/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4565]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8289]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][61] ([i915#8289]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb2/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@gem_readwrite@beyond-eob.html - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-snb: NOTRUN -> [SKIP][74] +120 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4885]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-7/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@gen9_exec_parse@secure-batches.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8399]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#11681] / [i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#11681] / [i915#6621]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#11681]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4212]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#8709]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#5286]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3638]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][108] +7 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][109] +16 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +8 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#6095]) +153 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#6095]) +134 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6095]) +39 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#12313]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#6095]) +76 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#12313]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +19 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11616] / [i915#7213]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#7828]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#7828]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7828]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html - shard-rkl: NOTRUN -> [SKIP][128] ([i915#7828]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#7828]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3299]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3116] / [i915#3299]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#9197]) +26 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8063] / [i915#9433]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#7116] / [i915#9424]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#6944] / [i915#9424]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#9424]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3555]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8814]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8814]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11453]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#11453]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#11453]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#11453]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#4213]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#4103]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4103] / [i915#4213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#9809]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][152] -> [FAIL][153] ([i915#2346]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8588]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#8588]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#8588]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#8588]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8588]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3840]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#2065] / [i915#4854]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@kms_feature_discovery@chamelium.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4854]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4854]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#4854]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#1839]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#1839]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#1839]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#658]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#658]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][169] ([i915#2122]) +1 other test fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][170] +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#9934]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3637]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3637]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-snb: [PASS][174] -> [FAIL][175] ([i915#10826]) +1 other test fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb5/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [PASS][176] -> [FAIL][177] ([i915#2122]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][178] -> [FAIL][179] ([i915#2122]) +6 other tests fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html - shard-rkl: NOTRUN -> [FAIL][180] ([i915#2122]) +2 other tests fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][181] ([i915#11989]) +1 other test fail [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-mtlp: [PASS][182] -> [FAIL][183] ([i915#2122]) +4 other tests fail [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4: - shard-dg1: [PASS][184] -> [FAIL][185] ([i915#2122]) +2 other tests fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#2672] / [i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#2672]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8813]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8810]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#5190]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8708]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#4423] / [i915#8708]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-snb: [PASS][199] -> [SKIP][200] +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][201] +29 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][202] +30 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [PASS][205] -> [SKIP][206] ([i915#5354]) +14 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5354]) +37 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8708]) +10 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#10433] / [i915#3458]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#4342] / [i915#5354]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3458]) +11 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#1825]) +13 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3023]) +9 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3458]) +10 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@int-max-clock: - shard-dg2: [PASS][218] -> [SKIP][219] ([i915#3555]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_invalid_mode@int-max-clock.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_invalid_mode@int-max-clock.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#12388]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#12339]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#12339]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#12339]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [PASS][225] -> [SKIP][226] ([i915#9197]) +32 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8825]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane@plane-position-hole: - shard-dg2: [PASS][228] -> [SKIP][229] ([i915#8825]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_plane@plane-position-hole.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane@plane-position-hole.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][230] ([i915#8292]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2: [PASS][231] -> [SKIP][232] ([i915#8152] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#12247]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#8152]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#12247]) +9 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8152] / [i915#9423]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#8152]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a: - shard-dg1: [PASS][240] -> [DMESG-WARN][241] ([i915#4423]) +1 other test dmesg-warn [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-dg2: [PASS][242] -> [SKIP][243] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d: - shard-dg2: [PASS][244] -> [SKIP][245] ([i915#12247] / [i915#8152]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#9423]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#12247]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#12247]) +8 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#12247]) +10 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#12247]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-dg2: [PASS][251] -> [SKIP][252] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#3555] / [i915#9423]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#3555]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#3555] / [i915#6953]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#5354]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#9812]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-10/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#9685]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9292]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9293]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9685]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3361]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: [PASS][263] -> [SKIP][264] ([i915#4281]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][265] -> [SKIP][266] ([i915#9340]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8430]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#8430]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][269] -> [SKIP][270] ([i915#9519]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9519]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#9519]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9519]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][275] ([i915#9519]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#9519]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#6524] / [i915#6805]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#6524]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#11520]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#11520]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#11520]) +7 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#12316]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][283] ([i915#11520]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#11520]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#9683]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#9732]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-2/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +22 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-8/igt@kms_psr@fbc-psr-primary-page-flip.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +18 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9688]) +12 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html * igt@kms_psr@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +9 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@kms_psr@psr-suspend.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#11131] / [i915#5190]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#11131]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#5289]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#5289]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][295] ([i915#12231]) +1 other test abort [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-tglu: NOTRUN -> [FAIL][296] ([i915#5465]) +2 other tests fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-2/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][297] -> [FAIL][298] ([i915#5465]) +2 other tests fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#8623]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][300] -> [FAIL][301] ([i915#9196]) +1 other test fail [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#3555]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11920]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#11920]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-15/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9906]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9906]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#8808] / [i915#9906]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#2437]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][309] -> [FAIL][310] ([i915#4349]) +4 other tests fail [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][311] ([i915#11823]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#8516]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#3708] / [i915#4077]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#3708]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@prime_vgem@basic-read.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3291] / [i915#3708]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@prime_vgem@basic-read.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#3708]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#3708] / [i915#4077]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][318] ([i915#3708]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-3/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][319] ([i915#3708] / [i915#4077]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#3708]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9917]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][322] ([i915#11980]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-2/igt@gem_ctx_persistence@hostile.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-8/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@kms: - shard-dg2: [FAIL][324] ([i915#5784]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-6/igt@gem_eio@kms.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@gem_eio@kms.html * igt@i915_module_load@reload: - shard-snb: [ABORT][326] ([i915#12450]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb5/igt@i915_module_load@reload.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb7/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][328] ([i915#9820]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][330] ([i915#9820]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][332] ([i915#10131] / [i915#10887] / [i915#9697]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@reset: - shard-dg2: [FAIL][334] -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@i915_pm_rps@reset.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@i915_pm_rps@reset.html - shard-dg1: [FAIL][336] -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-17/igt@i915_pm_rps@reset.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][338] ([i915#7984]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-5/igt@i915_power@sanity.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-1/igt@i915_power@sanity.html * igt@i915_selftest@live@ring_submission: - shard-mtlp: [ABORT][340] -> [PASS][341] +1 other test pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-1/igt@i915_selftest@live@ring_submission.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@i915_selftest@live@ring_submission.html * igt@kms_atomic_transition@plane-all-transition: - shard-dg2: [SKIP][342] ([i915#9197]) -> [PASS][343] +9 other tests pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_atomic_transition@plane-all-transition.html * igt@kms_cursor_crc@cursor-suspend: - shard-mtlp: [INCOMPLETE][344] ([i915#12358]) -> [PASS][345] +1 other test pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-6/igt@kms_cursor_crc@cursor-suspend.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][346] ([i915#1257]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_dp_aux_dev.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [FAIL][348] ([i915#2122]) -> [PASS][349] +3 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank: - shard-mtlp: [FAIL][350] ([i915#2122]) -> [PASS][351] +1 other test pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-1/igt@kms_flip@blocking-wf_vblank.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_flip@blocking-wf_vblank.html - shard-rkl: [FAIL][352] ([i915#11961] / [i915#2122]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-rkl: [FAIL][354] ([i915#2122]) -> [PASS][355] +1 other test pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [ABORT][356] ([i915#4423]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-dg2: [SKIP][358] ([i915#5354]) -> [PASS][359] +6 other tests pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [INCOMPLETE][360] -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: [FAIL][362] ([i915#2122]) -> [PASS][363] +1 other test pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-7/igt@kms_flip@plain-flip-ts-check-interruptible.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-4/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2: [SKIP][364] ([i915#3555]) -> [PASS][365] +1 other test pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: [DMESG-WARN][366] ([i915#4423]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2: [SKIP][368] ([i915#433]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_hdmi_inject@inject-audio.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_hdmi_inject@inject-audio.html - shard-rkl: [SKIP][370] ([i915#433]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_hdmi_inject@inject-audio.html - shard-snb: [SKIP][372] -> [PASS][373] +1 other test pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb4/igt@kms_hdmi_inject@inject-audio.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb6/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: [SKIP][374] ([i915#433]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html - shard-mtlp: [SKIP][376] ([i915#433]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][378] ([i915#3555] / [i915#8228]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_hdr@static-swap.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_hdr@static-swap.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [SKIP][380] ([i915#7294]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2: [SKIP][382] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - shard-dg2: [SKIP][384] ([i915#8152]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][386] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-dg2: [SKIP][388] ([i915#12247]) -> [PASS][389] +5 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][390] ([i915#12247] / [i915#8152]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][392] ([i915#9519]) -> [PASS][393] +3 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [FAIL][394] ([i915#11943]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@perf_pmu@most-busy-idle-check-all.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@perf_pmu@most-busy-idle-check-all.html - shard-dg1: [FAIL][396] ([i915#11943]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [FAIL][398] ([i915#11943]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html #### Warnings #### * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][400] ([i915#12027] / [i915#12031]) -> [FAIL][401] ([i915#12031]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][402] ([i915#9197]) -> [SKIP][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-10/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: [SKIP][404] ([i915#4538] / [i915#5190]) -> [SKIP][405] ([i915#5190] / [i915#9197]) +9 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2: [SKIP][406] ([i915#5190]) -> [SKIP][407] ([i915#5190] / [i915#9197]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: [SKIP][408] ([i915#5190] / [i915#9197]) -> [SKIP][409] ([i915#4538] / [i915#5190]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-dg2: [SKIP][410] ([i915#10307] / [i915#6095]) -> [SKIP][411] ([i915#9197]) +10 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-dg1: [SKIP][412] ([i915#6095]) -> [SKIP][413] ([i915#4423] / [i915#6095]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-14/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-17/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][414] ([i915#9197]) -> [SKIP][415] ([i915#10307] / [i915#6095]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-dg2: [SKIP][416] ([i915#4087]) -> [SKIP][417] ([i915#9197]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-10/igt@kms_cdclk@plane-scaling.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_cdclk@plane-scaling.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][418] ([i915#7118] / [i915#9424]) -> [SKIP][419] ([i915#9197]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-snb: [SKIP][420] -> [INCOMPLETE][421] ([i915#8816]) +1 other test incomplete [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb5/igt@kms_content_protection@content-type-change.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface: - shard-snb: [INCOMPLETE][422] ([i915#9878]) -> [SKIP][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb2/igt@kms_content_protection@mei-interface.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-snb2/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: [SKIP][424] ([i915#3555]) -> [SKIP][425] ([i915#9197]) +4 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: [SKIP][426] ([i915#5354]) -> [SKIP][427] ([i915#9197]) +2 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][428] ([i915#9197]) -> [SKIP][429] ([i915#12402]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2: [SKIP][430] ([i915#3555] / [i915#3840]) -> [SKIP][431] ([i915#9197]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-6/igt@kms_dsc@dsc-basic.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_dsc@dsc-basic.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: [SKIP][432] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][433] ([i915#3555] / [i915#5190]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: [SKIP][434] ([i915#8708]) -> [SKIP][435] ([i915#5354]) +10 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][436] ([i915#3458]) -> [SKIP][437] ([i915#10433] / [i915#3458]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][438] ([i915#5354]) -> [SKIP][439] ([i915#3458]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][440] ([i915#10433] / [i915#3458]) -> [SKIP][441] ([i915#5354]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt: - shard-dg2: [SKIP][442] ([i915#5354]) -> [SKIP][443] ([i915#8708]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu: - shard-dg1: [SKIP][444] ([i915#3458] / [i915#4423]) -> [SKIP][445] ([i915#3458]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][446] ([i915#3458]) -> [SKIP][447] ([i915#5354]) +13 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: [SKIP][448] ([i915#12388] / [i915#4423]) -> [SKIP][449] ([i915#12388]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg1-19/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: [SKIP][450] ([i915#5354] / [i915#9423]) -> [SKIP][451] ([i915#5354] / [i915#8152] / [i915#9423]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: [SKIP][452] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][453] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +2 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][454] ([i915#12247]) -> [SKIP][455] ([i915#12247] / [i915#8152]) +2 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][456] ([i915#9295]) -> [SKIP][457] ([i915#3361]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][458] ([i915#3828]) -> [SKIP][459] ([i915#9340]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg1: [SKIP][460] ([i915#11520] / [i915#4423]) -> [SKIP][461] ([i915#11520]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTP == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11937/index.html [-- Attachment #2: Type: text/html, Size: 108215 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for runner: Allow limits at dumping dmesg 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny ` (4 preceding siblings ...) 2024-10-18 18:50 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-10-19 8:41 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-19 8:41 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 65012 bytes --] == Series Details == Series: runner: Allow limits at dumping dmesg URL : https://patchwork.freedesktop.org/series/140182/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11937_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11937_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11937_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11937_full: ### IGT changes ### #### Possible regressions #### * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-edp-1: - shard-lnl: [PASS][3] -> [DMESG-WARN][4] +6 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-4/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-edp-1.html * igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer: - shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - {shard-bmg}: [SKIP][7] ([Intel XE#3007]) -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - {shard-bmg}: [SKIP][9] -> [DMESG-WARN][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - {shard-bmg}: NOTRUN -> [DMESG-WARN][11] +11 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html Known issues ------------ Here are the changes found in XEIGTPW_11937_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#1885]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#623]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#2351] / [Intel XE#2890]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-0.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +55 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2907]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1195] / [Intel XE#1727]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#1195] / [Intel XE#3113]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#3113]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1195]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#314]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#306]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-433/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +6 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#307]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#1475]) +1 other test fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2890]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1138]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][41] -> [FAIL][42] ([Intel XE#301]) +6 other tests fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@nonblocking-read: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_flip@nonblocking-read.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1: - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#886]) +5 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +10 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#651]) +17 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#2890]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#653]) +18 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2351] / [Intel XE#2890]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#605]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#2763]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][57] -> [SKIP][58] ([Intel XE#2446]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#2042]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_pm_rpm@universal-planes.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1489]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1122]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#2948]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2939]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#899]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#756]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_exec_balancer@no-exec-parallel-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1130]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_exec_balancer@no-exec-parallel-userptr-rebind.html * igt@xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#1130]) +23 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_exec_basic@once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#288]) +11 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@xe_exec_fault_mode@many-basic-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: NOTRUN -> [TIMEOUT][75] ([Intel XE#2105]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2905]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [PASS][77] -> [SKIP][78] ([Intel XE#1192]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@xe_live_ktest@xe_dma_buf.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-3/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2229]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][80] ([Intel XE#1999]) +2 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@reload: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#2136]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_module_load@reload.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@xe_module_load@reload.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#2249]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@rcs-0: - shard-lnl: NOTRUN -> [FAIL][85] ([Intel XE#2249]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-6/igt@xe_oa@mmio-triggered-reports@rcs-0.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2541]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#977]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#979]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#1173]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2284] / [Intel XE#366]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-exec-after: - shard-dg2-set2: [PASS][91] -> [ABORT][92] ([Intel XE#1358]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm@s3-exec-after.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][93] -> [ABORT][94] ([Intel XE#1794]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#958]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#944]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_query@multigpu-query-engines.html #### Possible fixes #### * igt@fbdev@write: - shard-dg2-set2: [SKIP][98] ([Intel XE#2134]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@fbdev@write.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@fbdev@write.html - {shard-bmg}: [SKIP][100] ([Intel XE#2134]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-4/igt@fbdev@write.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - {shard-bmg}: [SKIP][102] ([Intel XE#829]) -> [PASS][103] +1 other test pass [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-dg2-set2: [SKIP][104] ([Intel XE#829]) -> [PASS][105] +1 other test pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-0.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - {shard-bmg}: [SKIP][106] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - {shard-bmg}: [FAIL][108] ([Intel XE#2436]) -> [PASS][109] +3 other tests pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][110] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][112] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - {shard-bmg}: [SKIP][114] ([Intel XE#3007]) -> [PASS][115] +3 other tests pass [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - {shard-bmg}: [SKIP][116] ([Intel XE#2231]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@fbc: - shard-dg2-set2: [SKIP][118] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][119] +1 other test pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [ABORT][120] ([Intel XE#2625]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [ABORT][122] -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [FAIL][124] ([Intel XE#301]) -> [PASS][125] +2 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - {shard-bmg}: [FAIL][126] ([Intel XE#301]) -> [PASS][127] +4 other tests pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [FAIL][128] ([Intel XE#886]) -> [PASS][129] +4 other tests pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][130] ([Intel XE#783]) -> [PASS][131] +1 other test pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][132] ([Intel XE#2890]) -> [PASS][133] +3 other tests pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: [SKIP][134] -> [PASS][135] +8 other tests pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_lease@lease-invalid-crtc.html * igt@kms_prop_blob@invalid-set-prop-any: - shard-dg2-set2: [SKIP][136] ([Intel XE#2423] / [i915#2575]) -> [PASS][137] +6 other tests pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_prop_blob@invalid-set-prop-any.html * igt@kms_properties@connector-properties-legacy: - {shard-bmg}: [SKIP][138] -> [PASS][139] +9 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-5/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [FAIL][140] ([Intel XE#2948]) -> [PASS][141] +3 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-blt@edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-4/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_psr@psr2-primary-blt@edp-1: - shard-lnl: [FAIL][142] ([Intel XE#1649]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-3/igt@kms_psr@psr2-primary-blt@edp-1.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - {shard-bmg}: [INCOMPLETE][144] -> [PASS][145] +1 other test pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [FAIL][146] ([Intel XE#1523]) -> [PASS][147] +1 other test pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-1/igt@kms_vblank@accuracy-idle.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][148] ([Intel XE#2443]) -> [PASS][149] +3 other tests pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_vrr@flipline.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-3/igt@kms_vrr@flipline.html * igt@xe_drm_fdinfo@utilization-others-idle: - shard-dg2-set2: [SKIP][150] ([Intel XE#1130]) -> [PASS][151] +11 other tests pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@xe_drm_fdinfo@utilization-others-idle.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - {shard-bmg}: [INCOMPLETE][152] ([Intel XE#1473]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][154] ([Intel XE#1473]) -> [PASS][155] +1 other test pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_compute_mode@many-userptr-invalidate: - shard-lnl: [DMESG-WARN][156] ([Intel XE#2687]) -> [PASS][157] +1 other test pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-4/igt@xe_exec_compute_mode@many-userptr-invalidate.html * igt@xe_exec_compute_mode@non-blocking: - {shard-bmg}: [SKIP][158] ([Intel XE#1130]) -> [PASS][159] +13 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html * igt@xe_exec_reset@parallel-close-fd: - {shard-bmg}: [FAIL][160] -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_reset@parallel-close-fd.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-4/igt@xe_exec_reset@parallel-close-fd.html - shard-dg2-set2: [FAIL][162] -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_reset@parallel-close-fd.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_module_load@reload-no-display: - {shard-bmg}: [FAIL][164] ([Intel XE#2136]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_module_load@reload-no-display.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-1/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [FAIL][166] ([Intel XE#1204] / [Intel XE#2136]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_module_load@reload-no-display.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-435/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-exponents: - shard-lnl: [FAIL][168] -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-7/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][170] ([Intel XE#2514]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [ABORT][172] ([Intel XE#1358]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s4-basic.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-433/igt@xe_pm@s4-basic.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1195]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@xe_pm_residency@idle-residency-on-exec.html - {shard-bmg}: [INCOMPLETE][176] ([Intel XE#2655]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html * igt@xe_vm@large-misaligned-binds-268435456: - shard-lnl: [DMESG-WARN][178] -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_vm@large-misaligned-binds-268435456.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-lnl-6/igt@xe_vm@large-misaligned-binds-268435456.html #### Warnings #### * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][180] ([Intel XE#316]) -> [SKIP][181] ([Intel XE#2351] / [Intel XE#2890]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][182] ([Intel XE#1124]) -> [SKIP][183] ([Intel XE#2890]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][184] ([Intel XE#829]) -> [SKIP][185] ([Intel XE#1124]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2-set2: [SKIP][186] ([Intel XE#2890]) -> [SKIP][187] ([Intel XE#1124]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][188] ([Intel XE#2423] / [i915#2575]) -> [SKIP][189] ([Intel XE#367]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][190] ([Intel XE#367]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: [SKIP][192] -> [SKIP][193] ([Intel XE#367]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][194] ([Intel XE#829]) -> [SKIP][195] ([Intel XE#455] / [Intel XE#787]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][196] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][197] ([Intel XE#2890]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][198] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][199] ([Intel XE#2351] / [Intel XE#2890]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][200] ([Intel XE#2890]) -> [SKIP][201] ([Intel XE#455] / [Intel XE#787]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg2-set2: [SKIP][202] ([Intel XE#2423] / [i915#2575]) -> [SKIP][203] ([Intel XE#373]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][204] ([Intel XE#373]) -> [SKIP][205] ([Intel XE#2423] / [i915#2575]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][206] ([Intel XE#1178] / [Intel XE#1204]) -> [SKIP][207] ([Intel XE#2423] / [i915#2575]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_content_protection@lic-type-0.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_content_protection@lic-type-0.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][208] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][209] ([Intel XE#651]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][210] -> [SKIP][211] ([Intel XE#651]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][212] ([Intel XE#651]) -> [SKIP][213] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw: - shard-dg2-set2: [SKIP][214] ([Intel XE#651]) -> [SKIP][215] ([Intel XE#2890]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][216] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][217] ([Intel XE#653]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][218] ([Intel XE#2890]) -> [SKIP][219] ([Intel XE#653]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][220] ([Intel XE#653]) -> [SKIP][221] ([Intel XE#2351] / [Intel XE#2890]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][222] ([Intel XE#653]) -> [SKIP][223] ([Intel XE#2890]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][224] -> [SKIP][225] ([Intel XE#653]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][226] ([Intel XE#783]) -> [SKIP][227] ([Intel XE#653]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][228] -> [SKIP][229] ([Intel XE#2763] / [Intel XE#455]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][230] ([Intel XE#870]) -> [SKIP][231] ([Intel XE#2890]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_pm_backlight@fade.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_pm_backlight@fade.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][232] -> [SKIP][233] ([Intel XE#1489]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][234] ([Intel XE#1489]) -> [SKIP][235] ([Intel XE#2890]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-render: - shard-dg2-set2: [SKIP][236] ([Intel XE#2890]) -> [SKIP][237] ([Intel XE#2850] / [Intel XE#929]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-render.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg2-set2: [SKIP][238] -> [SKIP][239] ([Intel XE#2850] / [Intel XE#929]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-sprite-blt: - shard-dg2-set2: [SKIP][240] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][241] ([Intel XE#2890]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-blt.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-blt.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][242] -> [SKIP][243] ([Intel XE#2890]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-cursor-render: - shard-dg2-set2: [SKIP][244] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][245] ([Intel XE#2850] / [Intel XE#929]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@psr-cursor-render.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_psr@psr-cursor-render.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][246] ([Intel XE#1500]) -> [SKIP][247] ([Intel XE#362]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][248] ([Intel XE#2423] / [i915#2575]) -> [SKIP][249] ([Intel XE#455]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-436/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-dg2-set2: [SKIP][250] -> [SKIP][251] ([Intel XE#455]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2-set2: [SKIP][252] ([Intel XE#455]) -> [SKIP][253] ([Intel XE#2423] / [i915#2575]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_vrr@seamless-rr-switch-vrr.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@xe_eudebug@basic-exec-queues: - shard-dg2-set2: [SKIP][254] ([Intel XE#2905]) -> [SKIP][255] ([Intel XE#1130]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@xe_eudebug@basic-exec-queues.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug_online@breakpoint-not-in-debug-mode: - shard-dg2-set2: [SKIP][256] ([Intel XE#1130]) -> [SKIP][257] ([Intel XE#2905]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: [SKIP][258] ([Intel XE#288]) -> [SKIP][259] ([Intel XE#1130]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][260] ([Intel XE#1130]) -> [SKIP][261] ([Intel XE#288]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][262] ([Intel XE#560]) -> [SKIP][263] ([Intel XE#1130]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_media_fill@media-fill.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_media_fill@media-fill.html * igt@xe_oa@oa-exponents: - shard-dg2-set2: [SKIP][264] ([Intel XE#2541]) -> [SKIP][265] ([Intel XE#1130]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_oa@oa-exponents.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_oa@oa-exponents.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: [SKIP][266] ([Intel XE#1130]) -> [SKIP][267] ([Intel XE#2284] / [Intel XE#366]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-dg2-set2: [SKIP][268] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][269] ([Intel XE#1130]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm@s4-d3cold-basic-exec.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2655]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2655 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2870 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11937 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3 IGTPW_11937: 5b49646ff8c7e985065063bef5927cbb23961cc9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667 xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3: cebb76fe419dd92609fb86e59c9671387c5325a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11937/index.html [-- Attachment #2: Type: text/html, Size: 77022 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-13 15:15 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-18 16:18 [PATCH i-g-t 0/2] runner: Allow limits at dumping dmesg Kamil Konieczny 2024-10-18 16:18 ` [PATCH i-g-t 1/2] runner/executor: Check for error at writing dmesg dump Kamil Konieczny 2024-10-24 13:45 ` Krzysztof Karas 2024-11-13 15:15 ` Kamil Konieczny 2024-10-18 16:18 ` [PATCH i-g-t 2/2] runner/executor: Limit reading dmesg to chunks Kamil Konieczny 2024-10-18 17:14 ` ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg Patchwork 2024-10-18 17:36 ` ✓ CI.xeBAT: " Patchwork 2024-10-18 18:50 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-19 8:41 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox