* [PATCH v6 0/2] Wa_14026633728
@ 2026-05-07 5:34 Shekhar Chauhan
2026-05-07 5:34 ` [PATCH v6 1/2] lib/intel_wa: Check for device workarounds Shekhar Chauhan
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Shekhar Chauhan @ 2026-05-07 5:34 UTC (permalink / raw)
To: igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit
This series introduces Wa_14026633728. For it's introduction, changes
are made in lib/intel_wa to ensure we check from debugfs whether a
workaround is enabled via the KMD or not.
v1: Add workaround patch.
v2: Fix commit title, description and code description.
v3: Check if the wa exists and reuse it, also, fix a warning for C90
rule.
v4: Introduce changes in lib/intel_wa to ensure we are properly checking
the debugfs file for the workaround.
v5: Roll back to original design for increasing oa_exponent to keep it
simple.
Shekhar Chauhan (2):
lib/intel_wa: Check for device workarounds
tests/intel/xe_oa: Wa_14026633728
lib/intel_wa.c | 40 ++++++++++++++++++++++++++--------------
tests/intel/xe_oa.c | 18 ++++++++++++++++++
2 files changed, 44 insertions(+), 14 deletions(-)
--
2.53.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH v6 1/2] lib/intel_wa: Check for device workarounds 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan @ 2026-05-07 5:34 ` Shekhar Chauhan 2026-05-07 5:34 ` [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan ` (4 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Shekhar Chauhan @ 2026-05-07 5:34 UTC (permalink / raw) To: igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit Currently, igt_has_intel_wa() only checks for GT workarounds, extending it to ensure that it also checks for device workarounds to avoid having device workaround checks in the code. While at it, ensure that we do not duplicate the logic for reading from the debugfs file by extracting it into a separate function called debugfs_file_has_wa(). Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> --- lib/intel_wa.c | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/lib/intel_wa.c b/lib/intel_wa.c index 685df106f..727dd6c98 100644 --- a/lib/intel_wa.c +++ b/lib/intel_wa.c @@ -12,6 +12,27 @@ #include "intel_wa.h" #include "xe/xe_query.h" +static int debugfs_file_has_wa(int drm_fd, int debugfs_fd, + const char *debugfs_name, const char *wa) +{ + char *debugfs_dump; + + if (!igt_debugfs_exists(drm_fd, debugfs_name, O_RDONLY)) + return -1; + + debugfs_dump = igt_sysfs_get(debugfs_fd, debugfs_name); + if (debugfs_dump) { + char *has_wa = strstr(debugfs_dump, wa); + + free(debugfs_dump); + + if (has_wa) + return 1; + } + + return 0; +} + /** * igt_has_intel_wa: * @drm_fd: A drm file descriptor @@ -25,7 +46,6 @@ int igt_has_intel_wa(int drm_fd, const char *check_wa) int debugfs_fd; unsigned int xe; char name[256]; - char *debugfs_dump, *has_wa; debugfs_fd = igt_debugfs_dir(drm_fd); if (debugfs_fd == -1) @@ -33,22 +53,14 @@ int igt_has_intel_wa(int drm_fd, const char *check_wa) xe_for_each_gt(drm_fd, xe) { sprintf(name, "gt%d/workarounds", xe); - if (!igt_debugfs_exists(drm_fd, name, O_RDONLY)) { - ret = -1; + ret = debugfs_file_has_wa(drm_fd, debugfs_fd, name, check_wa); + if (ret) break; - } - - debugfs_dump = igt_sysfs_get(debugfs_fd, name); - if (debugfs_dump) { - has_wa = strstr(debugfs_dump, check_wa); - free(debugfs_dump); - if (has_wa) { - ret = 1; - break; - } - } } + if (!ret) + ret = debugfs_file_has_wa(drm_fd, debugfs_fd, "workarounds", check_wa); + close(debugfs_fd); return ret; } -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan 2026-05-07 5:34 ` [PATCH v6 1/2] lib/intel_wa: Check for device workarounds Shekhar Chauhan @ 2026-05-07 5:34 ` Shekhar Chauhan 2026-05-07 5:50 ` Shekhar Chauhan 2026-05-07 15:11 ` Dixit, Ashutosh 2026-05-07 7:16 ` ✓ Xe.CI.BAT: success for Wa_14026633728 (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 10+ messages in thread From: Shekhar Chauhan @ 2026-05-07 5:34 UTC (permalink / raw) To: igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit For MERTOA in CRI, oa buffer can be in device memory. Because of slower device mem access, OA exponent values lower than 8 can result in buffer overflows. Bump the OA exponent value. Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> --- tests/intel/xe_oa.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 988c46df6..c464d5a0d 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -24,6 +24,7 @@ #include "igt_device.h" #include "igt_syncobj.h" #include "igt_sysfs.h" +#include "intel_wa.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xe/xe_oa.h" @@ -2648,6 +2649,11 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau); uint64_t fmt = test_set->perf_oa_format; size_t report_size = get_oa_format(fmt).size; + /* + * If modifying the indices or order of items inside properties[], + * ensure that a corresponding change is made for oa_exponent index + * in the workaround Wa_14026633728 below as well. + */ uint64_t properties[] = { DRM_XE_OA_PROPERTY_OA_UNIT_ID, oau->oa_unit_id, @@ -2671,6 +2677,18 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) int len, check_idx; u32 oa_status; + /* + * Wa_14026633728: For MERTOA in CRI, oa buffer can be in device memory. + * Because of slower device mem access, OA exponent values lower than 8 + * can result in buffer overflows. Also, update the value of oa_exponent + * in properties[]. + */ + if (oau->oa_unit_type == DRM_XE_OA_UNIT_TYPE_MERT && + igt_has_intel_wa(drm_fd, "14026633728")) { + oa_exponent = max(oa_exponent, 8); + properties[9] = oa_exponent; + } + igt_assert(buf); igt_debug("Ready to read about %u bytes\n", buf_size); -- 2.53.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 2026-05-07 5:34 ` [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan @ 2026-05-07 5:50 ` Shekhar Chauhan 2026-05-07 15:11 ` Dixit, Ashutosh 1 sibling, 0 replies; 10+ messages in thread From: Shekhar Chauhan @ 2026-05-07 5:50 UTC (permalink / raw) To: igt-dev; +Cc: ashutosh.dixit On 5/7/2026 11:04, Shekhar Chauhan wrote: > For MERTOA in CRI, oa buffer can be in device memory. Because of slower > device mem access, OA exponent values lower than 8 can result in buffer > overflows. Bump the OA exponent value. > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tests/intel/xe_oa.c | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 988c46df6..c464d5a0d 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -24,6 +24,7 @@ > #include "igt_device.h" > #include "igt_syncobj.h" > #include "igt_sysfs.h" > +#include "intel_wa.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > #include "xe/xe_oa.h" > @@ -2648,6 +2649,11 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) > struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau); > uint64_t fmt = test_set->perf_oa_format; > size_t report_size = get_oa_format(fmt).size; > + /* > + * If modifying the indices or order of items inside properties[], > + * ensure that a corresponding change is made for oa_exponent index > + * in the workaround Wa_14026633728 below as well. > + */ > uint64_t properties[] = { > DRM_XE_OA_PROPERTY_OA_UNIT_ID, oau->oa_unit_id, > > @@ -2671,6 +2677,18 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) > int len, check_idx; > u32 oa_status; > > + /* > + * Wa_14026633728: For MERTOA in CRI, oa buffer can be in device memory. > + * Because of slower device mem access, OA exponent values lower than 8 > + * can result in buffer overflows. Also, update the value of oa_exponent > + * in properties[]. > + */ > + if (oau->oa_unit_type == DRM_XE_OA_UNIT_TYPE_MERT && > + igt_has_intel_wa(drm_fd, "14026633728")) { > + oa_exponent = max(oa_exponent, 8); > + properties[9] = oa_exponent; If we were going with my previous design (with using that ternary operator "?"), we didn't have a "magic number" in place. I've added a comment on top of the properties[] which asks any future developer to ensure that they make proper adjustments to this workaround as well if they touch the ordering in that array. Let me know if you have some other suggestion about implementing this. Or, we can just fall back to the ternary way, although that looks complicated but it solves both problems: C90 rule violation and properties array indexing. I also ack your ask to change the design of that function, but I'd like to keep this series focused on this workaround and right after this, I'll send another patch to implement your ask in lib/intel_wa. -shekhar > + } > + > igt_assert(buf); > > igt_debug("Ready to read about %u bytes\n", buf_size); -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 2026-05-07 5:34 ` [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan 2026-05-07 5:50 ` Shekhar Chauhan @ 2026-05-07 15:11 ` Dixit, Ashutosh 2026-05-08 2:23 ` Shekhar Chauhan 1 sibling, 1 reply; 10+ messages in thread From: Dixit, Ashutosh @ 2026-05-07 15:11 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev On Wed, 06 May 2026 22:34:59 -0700, Shekhar Chauhan wrote: > > For MERTOA in CRI, oa buffer can be in device memory. Because of slower > device mem access, OA exponent values lower than 8 can result in buffer > overflows. Bump the OA exponent value. > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tests/intel/xe_oa.c | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 988c46df6..c464d5a0d 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -24,6 +24,7 @@ > #include "igt_device.h" > #include "igt_syncobj.h" > #include "igt_sysfs.h" > +#include "intel_wa.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > #include "xe/xe_oa.h" > @@ -2648,6 +2649,11 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) > struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau); > uint64_t fmt = test_set->perf_oa_format; > size_t report_size = get_oa_format(fmt).size; > + /* > + * If modifying the indices or order of items inside properties[], > + * ensure that a corresponding change is made for oa_exponent index > + * in the workaround Wa_14026633728 below as well. > + */ Delete this comment, this is not the only place where this is done in this file and the function is small enough for someone to check this automatically. > uint64_t properties[] = { > DRM_XE_OA_PROPERTY_OA_UNIT_ID, oau->oa_unit_id, > > @@ -2671,6 +2677,18 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) > int len, check_idx; > u32 oa_status; > > + /* > + * Wa_14026633728: For MERTOA in CRI, oa buffer can be in device memory. > + * Because of slower device mem access, OA exponent values lower than 8 > + * can result in buffer overflows. Also, update the value of oa_exponent > + * in properties[]. > + */ > + if (oau->oa_unit_type == DRM_XE_OA_UNIT_TYPE_MERT && > + igt_has_intel_wa(drm_fd, "14026633728")) { > + oa_exponent = max(oa_exponent, 8); > + properties[9] = oa_exponent; > + } Hmm, code should use tabs, not spaces. Please fix your editor to do this. > + > igt_assert(buf); > > igt_debug("Ready to read about %u bytes\n", buf_size); > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 2026-05-07 15:11 ` Dixit, Ashutosh @ 2026-05-08 2:23 ` Shekhar Chauhan 0 siblings, 0 replies; 10+ messages in thread From: Shekhar Chauhan @ 2026-05-08 2:23 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 5/7/2026 20:41, Dixit, Ashutosh wrote: > On Wed, 06 May 2026 22:34:59 -0700, Shekhar Chauhan wrote: >> For MERTOA in CRI, oa buffer can be in device memory. Because of slower >> device mem access, OA exponent values lower than 8 can result in buffer >> overflows. Bump the OA exponent value. >> >> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> >> --- >> tests/intel/xe_oa.c | 18 ++++++++++++++++++ >> 1 file changed, 18 insertions(+) >> >> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c >> index 988c46df6..c464d5a0d 100644 >> --- a/tests/intel/xe_oa.c >> +++ b/tests/intel/xe_oa.c >> @@ -24,6 +24,7 @@ >> #include "igt_device.h" >> #include "igt_syncobj.h" >> #include "igt_sysfs.h" >> +#include "intel_wa.h" >> #include "xe/xe_ioctl.h" >> #include "xe/xe_query.h" >> #include "xe/xe_oa.h" >> @@ -2648,6 +2649,11 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) >> struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau); >> uint64_t fmt = test_set->perf_oa_format; >> size_t report_size = get_oa_format(fmt).size; >> + /* >> + * If modifying the indices or order of items inside properties[], >> + * ensure that a corresponding change is made for oa_exponent index >> + * in the workaround Wa_14026633728 below as well. >> + */ > Delete this comment, this is not the only place where this is done in this > file and the function is small enough for someone to check this automatically. I've sent a new revision based on what you've asked, but I still believe that the ternary operator way of doing this was avoiding all this. Introducing a magic number below in the workaround isn't a good thing that we've done here, is what I believe. As for the comment, I added it to ensure that someone modifying this file should have a gentle reminder for that as well. I agree on your statement that the ternary operator in that scenario was a bit complicated to read and understand, but at least we weren't introducing a magic number. > >> uint64_t properties[] = { >> DRM_XE_OA_PROPERTY_OA_UNIT_ID, oau->oa_unit_id, >> >> @@ -2671,6 +2677,18 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) >> int len, check_idx; >> u32 oa_status; >> >> + /* >> + * Wa_14026633728: For MERTOA in CRI, oa buffer can be in device memory. >> + * Because of slower device mem access, OA exponent values lower than 8 >> + * can result in buffer overflows. Also, update the value of oa_exponent >> + * in properties[]. >> + */ >> + if (oau->oa_unit_type == DRM_XE_OA_UNIT_TYPE_MERT && >> + igt_has_intel_wa(drm_fd, "14026633728")) { >> + oa_exponent = max(oa_exponent, 8); >> + properties[9] = oa_exponent; >> + } > Hmm, code should use tabs, not spaces. Please fix your editor to do this. Done in the new revision. -shekhar > >> + >> igt_assert(buf); >> >> igt_debug("Ready to read about %u bytes\n", buf_size); >> -- >> 2.53.0 >> -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Wa_14026633728 (rev3) 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan 2026-05-07 5:34 ` [PATCH v6 1/2] lib/intel_wa: Check for device workarounds Shekhar Chauhan 2026-05-07 5:34 ` [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan @ 2026-05-07 7:16 ` Patchwork 2026-05-07 7:19 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-07 7:16 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 932 bytes --] == Series Details == Series: Wa_14026633728 (rev3) URL : https://patchwork.freedesktop.org/series/165955/ State : success == Summary == CI Bug Log - changes from XEIGT_8899_BAT -> XEIGTPW_15125_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8899 -> IGTPW_15125 IGTPW_15125: 78bc08809f5e2b3495c93284720bc3a7f65901b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5007-ad7a1f718b8cb631948c94f74dd48cd2867d99fb: ad7a1f718b8cb631948c94f74dd48cd2867d99fb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/index.html [-- Attachment #2: Type: text/html, Size: 1477 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Wa_14026633728 (rev3) 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan ` (2 preceding siblings ...) 2026-05-07 7:16 ` ✓ Xe.CI.BAT: success for Wa_14026633728 (rev3) Patchwork @ 2026-05-07 7:19 ` Patchwork 2026-05-07 16:52 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-07 17:16 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-07 7:19 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10679 bytes --] == Series Details == Series: Wa_14026633728 (rev3) URL : https://patchwork.freedesktop.org/series/165955/ State : success == Summary == CI Bug Log - changes from IGT_8899 -> IGTPW_15125 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/index.html Participating hosts (40 -> 40) ------------------------------ Additional (2): bat-atsm-1 bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15125 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@dmabuf@all-tests.html - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#15931]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@dmabuf@all-tests.html * igt@fbdev@info: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@fbdev@info.html * igt@fbdev@read: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#2582]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@fbdev@read.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#4079]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#4077]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic@basic: - bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#15657]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@gem_tiled_pread_basic@basic.html - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#15656]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][12] -> [DMESG-FAIL][13] ([i915#12061]) +1 other test dmesg-fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-mtlp-8/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-atsm-1: NOTRUN -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][15] ([i915#7707]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6077]) +37 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][17] ([i915#4103]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6078]) +22 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#3840]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-atsm-1: NOTRUN -> [SKIP][20] ([i915#6093]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html - bat-adls-6: NOTRUN -> [SKIP][21] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#1836]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][23] ([i915#5354]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][24] ([i915#7357]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][25] ([i915#1072] / [i915#9732]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][26] ([i915#6094]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-adls-6: NOTRUN -> [SKIP][27] ([i915#3555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][28] ([i915#3291]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-adls-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][29] +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-atsm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live: - bat-dg2-8: [DMESG-FAIL][30] ([i915#12061]) -> [PASS][31] +1 other test pass [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-dg2-8/igt@i915_selftest@live.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][32] ([i915#12061]) -> [PASS][33] +1 other test pass [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-arls-5/igt@i915_selftest@live@workarounds.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-dg2-9: [DMESG-FAIL][34] ([i915#12061]) -> [PASS][35] +1 other test pass [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/bat-dg2-9/igt@i915_selftest@live@workarounds.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@kms_hdmi_inject@inject-audio: - fi-tgl-1115g4: [FAIL][36] ([i915#14867]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8899 -> IGTPW_15125 CI-20190529: 20190529 CI_DRM_18434: ad7a1f718b8cb631948c94f74dd48cd2867d99fb @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15125: 78bc08809f5e2b3495c93284720bc3a7f65901b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/index.html [-- Attachment #2: Type: text/html, Size: 12512 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for Wa_14026633728 (rev3) 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan ` (3 preceding siblings ...) 2026-05-07 7:19 ` ✓ i915.CI.BAT: " Patchwork @ 2026-05-07 16:52 ` Patchwork 2026-05-07 17:16 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-07 16:52 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 63694 bytes --] == Series Details == Series: Wa_14026633728 (rev3) URL : https://patchwork.freedesktop.org/series/165955/ State : failure == Summary == CI Bug Log - changes from XEIGT_8899_FULL -> XEIGTPW_15125_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15125_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15125_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15125_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_system_allocator@many-64k-mmap-race: - shard-lnl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-8/igt@xe_exec_system_allocator@many-64k-mmap-race.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-8/igt@xe_exec_system_allocator@many-64k-mmap-race.html Known issues ------------ Here are the changes found in XEIGTPW_15125_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1125] / [Intel XE#7312]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#3718] / [Intel XE#6078]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3: - shard-bmg: [PASS][6] -> [FAIL][7] ([Intel XE#6078]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#5643]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#7059] / [Intel XE#7085]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7059] / [Intel XE#7085]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1467] / [Intel XE#7367]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607] / [Intel XE#7361]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#7679]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3432]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2652]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6969]) +10 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#6969] / [Intel XE#7006]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html * igt@kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7642]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2321] / [Intel XE#7355]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-8/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-bmg: [PASS][34] -> [DMESG-FAIL][35] ([Intel XE#5545]) +1 other test dmesg-fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x256.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4354] / [Intel XE#5882]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4354] / [Intel XE#7450]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2244]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7349]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode: - shard-bmg: [PASS][42] -> [DMESG-FAIL][43] ([Intel XE#1727]) +1 other test dmesg-fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1397] / [Intel XE#7385]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7179]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#6703]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrshdr-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4141]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +24 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1469] / [Intel XE#7399]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7061]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656] / [Intel XE#7905]) +9 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7399]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7865]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +24 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7905]) +11 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7061]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7915]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#7915]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-5/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7173] / [Intel XE#7294]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7283]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7283]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#5021] / [Intel XE#7377]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#3307]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2893] / [Intel XE#7304]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1489]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#7345]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#4609]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1435]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#5937]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#7636]) +8 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_eudebug_online@single-step.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7636]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#6540] / [Intel XE#688]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_evict@evict-small-multi-queue-priority: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#7140]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@xe_evict@evict-small-multi-queue-priority.html * igt@xe_exec_balancer@twice-virtual-basic: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#7482]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@xe_exec_balancer@twice-virtual-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1392]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_compute_mode@twice-basic: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#6557] / [Intel XE#6703]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-4/igt@xe_exec_compute_mode@twice-basic.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_exec_compute_mode@twice-basic.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7136]) +8 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#7136]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-3/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#6703]) +88 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-5/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@many-execs-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#6874]) +13 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-6/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-close-fd-smem: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6874]) +8 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-close-fd-smem.html * igt@xe_exec_reset@multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7866]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@xe_exec_reset@multi-queue-cat-error.html * igt@xe_exec_reset@multi-queue-close-execqueues: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7866]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@xe_exec_reset@multi-queue-close-execqueues.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#6196]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#7138]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#7138]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-rebind.html * igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6964]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html * igt@xe_multigpu_svm@mgpu-pagefault-conflict: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#6964]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-5/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html * igt@xe_page_reclaim@boundary-split: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#7793]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-5/igt@xe_page_reclaim@boundary-split.html * igt@xe_pat@l2-flush-opt-svm-pat-restrict: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#7590] / [Intel XE#7772]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-1/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html * igt@xe_pat@pat-sw-hw-compare: - shard-lnl: NOTRUN -> [FAIL][106] ([Intel XE#7695]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-4/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@xe_pm@d3cold-mocs.html * igt@xe_pxp@display-pxp-fb: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4733] / [Intel XE#7417]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html * igt@xe_query@multigpu-query-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#944]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-2/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#944]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-6/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_sriov_admin@default-sched-attributes-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#7174]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-4/igt@xe_sriov_admin@default-sched-attributes-vfs-disabled.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][112] -> [FAIL][113] ([Intel XE#6569]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_vfio@open-basic: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#7724]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-3/igt@xe_sriov_vfio@open-basic.html * igt@xe_vm@overcommit-nonfault-vram-no-lr: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7892]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-7/igt@xe_vm@overcommit-nonfault-vram-no-lr.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-bmg: [SKIP][116] ([Intel XE#6779]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-user: - shard-bmg: [FAIL][118] -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@core_setmaster@master-drop-set-user.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html * igt@kms_feature_discovery@display-1x: - shard-bmg: [SKIP][120] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][121] +1 other test pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_feature_discovery@display-1x.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_feature_discovery@display-1x.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][122] ([Intel XE#301]) -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][124] ([Intel XE#7915]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-6/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap: - shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [PASS][127] +147 other tests pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [FAIL][128] ([Intel XE#6569]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html #### Warnings #### * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-lnl: [SKIP][130] ([Intel XE#1407]) -> [ABORT][131] ([Intel XE#4760]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-lnl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#1124]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][134] ([Intel XE#1124]) -> [SKIP][135] ([Intel XE#6703]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p: - shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#7679]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][138] ([Intel XE#2887]) -> [SKIP][139] ([Intel XE#6703]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][140] ([Intel XE#6703]) -> [SKIP][141] ([Intel XE#2887]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-bmg: [SKIP][142] ([Intel XE#2652]) -> [SKIP][143] ([Intel XE#6703]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#2652]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-bmg: [SKIP][146] ([Intel XE#2252]) -> [SKIP][147] ([Intel XE#6703]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-7/igt@kms_chamelium_edid@dp-mode-timings.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#2252]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_color_pipeline@plane-lut3d-green-only: - shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#6969] / [Intel XE#7006]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_color_pipeline@plane-lut3d-green-only.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][152] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][153] ([Intel XE#6703]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-1/igt@kms_content_protection@lic-type-0.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [SKIP][155] ([Intel XE#2320]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_feature_discovery@display-4x: - shard-bmg: [SKIP][156] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][157] ([Intel XE#6703]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-8/igt@kms_feature_discovery@display-4x.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][160] ([Intel XE#2311]) -> [SKIP][161] ([Intel XE#6703]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#2311]) +11 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][164] ([Intel XE#4141]) -> [SKIP][165] ([Intel XE#6703]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-bmg: [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#4141]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-suspend.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render: - shard-bmg: [SKIP][168] ([Intel XE#6703]) -> [SKIP][169] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt: - shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#7061]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#2313]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][174] ([Intel XE#2313]) -> [SKIP][175] ([Intel XE#6703]) +9 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render: - shard-bmg: [SKIP][176] ([Intel XE#7061]) -> [SKIP][177] ([Intel XE#6703]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-bmg: [SKIP][178] ([Intel XE#7283]) -> [SKIP][179] ([Intel XE#6703]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][180] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][181] ([Intel XE#6703]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][182] ([Intel XE#1489]) -> [SKIP][183] ([Intel XE#6703]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-bmg: [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#1489]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-basic: - shard-bmg: [SKIP][186] ([Intel XE#6703]) -> [SKIP][187] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_psr@fbc-psr-basic.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-7/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-bmg: [SKIP][188] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][189] ([Intel XE#6703]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@kms_psr@fbc-psr2-sprite-plane-move.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#3904] / [Intel XE#7342]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: [SKIP][192] ([Intel XE#6703]) -> [SKIP][193] ([Intel XE#6503]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@kms_sharpness_filter@filter-tap.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@kms_sharpness_filter@filter-tap.html * igt@xe_eudebug_online@interrupt-other: - shard-bmg: [SKIP][194] ([Intel XE#6703]) -> [SKIP][195] ([Intel XE#7636]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_eudebug_online@interrupt-other.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@xe_eudebug_online@interrupt-other.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram: - shard-bmg: [SKIP][196] ([Intel XE#7636]) -> [SKIP][197] ([Intel XE#6703]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-bmg: [SKIP][198] ([Intel XE#6703]) -> [SKIP][199] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-bmg: [SKIP][200] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][201] ([Intel XE#6703]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-userptr.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch: - shard-bmg: [SKIP][202] ([Intel XE#7136]) -> [SKIP][203] ([Intel XE#6703]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault: - shard-bmg: [SKIP][204] ([Intel XE#6703]) -> [SKIP][205] ([Intel XE#7136]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd: - shard-bmg: [SKIP][206] ([Intel XE#6703]) -> [SKIP][207] ([Intel XE#6874]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html * igt@xe_exec_multi_queue@many-queues-userptr: - shard-bmg: [SKIP][208] ([Intel XE#6874]) -> [SKIP][209] ([Intel XE#6703]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-6/igt@xe_exec_multi_queue@many-queues-userptr.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-userptr.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: [INCOMPLETE][210] ([Intel XE#7098]) -> [SKIP][211] ([Intel XE#6703]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-new-prefetch.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic: - shard-bmg: [SKIP][212] ([Intel XE#6703]) -> [SKIP][213] ([Intel XE#7138]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic.html * igt@xe_page_reclaim@basic-mixed: - shard-bmg: [SKIP][214] ([Intel XE#7793]) -> [SKIP][215] ([Intel XE#6703]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-9/igt@xe_page_reclaim@basic-mixed.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_page_reclaim@basic-mixed.html * igt@xe_page_reclaim@pde-vs-pd: - shard-bmg: [SKIP][216] ([Intel XE#6703]) -> [SKIP][217] ([Intel XE#7793]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_page_reclaim@pde-vs-pd.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-3/igt@xe_page_reclaim@pde-vs-pd.html * igt@xe_pat@l2-flush-opt-svm-pat-restrict: - shard-bmg: [SKIP][218] ([Intel XE#7590]) -> [SKIP][219] ([Intel XE#6703]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-3/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: [SKIP][220] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][221] ([Intel XE#6703]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-1/igt@xe_pm@d3cold-mmap-vram.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][222] ([Intel XE#6703]) -> [SKIP][223] ([Intel XE#2284] / [Intel XE#7370]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_query@multigpu-query-oa-units: - shard-bmg: [SKIP][224] ([Intel XE#6703]) -> [SKIP][225] ([Intel XE#944]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_query@multigpu-query-oa-units.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-8/igt@xe_query@multigpu-query-oa-units.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [SKIP][226] ([Intel XE#6703]) -> [DMESG-WARN][227] ([Intel XE#5545]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8899/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [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#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724 [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8899 -> IGTPW_15125 IGTPW_15125: 78bc08809f5e2b3495c93284720bc3a7f65901b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5007-ad7a1f718b8cb631948c94f74dd48cd2867d99fb: ad7a1f718b8cb631948c94f74dd48cd2867d99fb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15125/index.html [-- Attachment #2: Type: text/html, Size: 77485 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Wa_14026633728 (rev3) 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan ` (4 preceding siblings ...) 2026-05-07 16:52 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-07 17:16 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-07 17:16 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 147329 bytes --] == Series Details == Series: Wa_14026633728 (rev3) URL : https://patchwork.freedesktop.org/series/165955/ State : failure == Summary == CI Bug Log - changes from IGT_8899_full -> IGTPW_15125_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15125_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15125_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_15125/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15125_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][1] -> [TIMEOUT][2] +1 other test timeout [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk10/igt@kms_frontbuffer_tracking@fbchdr-suspend.html #### Warnings #### * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-rkl: [SKIP][4] ([i915#15989]) -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html Known issues ------------ Here are the changes found in IGTPW_15125_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@device_reset@cold-reset-bound.html * igt@dmabuf@all-tests: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#15931]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@dmabuf@all-tests.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +13 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: NOTRUN -> [ABORT][15] ([i915#15131]) +1 other test abort [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-10/igt@gem_ctx_isolation@preservation-s3.html - shard-rkl: NOTRUN -> [ABORT][16] ([i915#15131]) +1 other test abort [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][17] ([i915#13356]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk3/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu-1: NOTRUN -> [SKIP][18] +47 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-8/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#6334]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#6344]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#6344]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#14544] / [i915#3281]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-18/igt@gem_exec_reloc@basic-write-read-active.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-4/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#2190]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][37] ([i915#2190]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][42] ([i915#4613]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk9/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#284]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +11 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4077]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@gem_mmap_gtt@flink-race.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-18/igt@gem_mmap_wc@read-write-distinct.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][52] ([i915#2658]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb1/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][53] ([i915#2658]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@gem_pread@exhaustion.html - shard-glk11: NOTRUN -> [WARN][54] ([i915#2658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@gem_pread@snoop.html * igt@gem_pread@uncached: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#3282]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_pread@uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][57] ([i915#14702] / [i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#13717]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#13398]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [PASS][62] -> [ABORT][63] ([i915#15131]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][64] +678 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@gem_render_copy@yf-tiled-to-vebox-linear.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#8411]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#15656]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@gem_tiled_pread_basic@basic.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4879]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk11: NOTRUN -> [INCOMPLETE][80] ([i915#13356]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#14544] / [i915#2527]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-5/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-out: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-17/igt@gen9_exec_parse@unaligned-access.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#14118]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-idle.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#14118]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#14118]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-3/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][91] ([i915#15342]) +1 other test abort [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#6412]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#6590]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#14498]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#14498]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#4387]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#6188]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#14544] / [i915#5723]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [PASS][100] -> [DMESG-WARN][101] ([i915#4391] / [i915#4423]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-19/igt@i915_suspend@basic-s3-without-i915.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#4817]) +2 other tests incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk8/igt@i915_suspend@forcewake.html - shard-rkl: [PASS][103] -> [INCOMPLETE][104] ([i915#4817]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@i915_suspend@forcewake.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][106] -> [INCOMPLETE][107] ([i915#12761]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#12761]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#12761] / [i915#14995]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [INCOMPLETE][110] ([i915#12761]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#9531]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][112] ([i915#1769]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][113] -> [FAIL][114] ([i915#15662]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#5286]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#14544] / [i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg1: [PASS][122] -> [DMESG-WARN][123] ([i915#4423]) +2 other tests dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-14/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +64 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#14098] / [i915#6095]) +53 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][130] +162 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#12313]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/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][132] ([i915#6095]) +82 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#6095]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +19 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#6095]) +104 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][137] +91 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12805]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +17 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +185 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][141] ([i915#15582]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +14 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#13781]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#13783]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#9979]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#15865]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#15865]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3116]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#15330]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#15865]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#15865]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][162] ([i915#13566]) +2 other tests fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3555]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#13049] / [i915#14544]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#13049]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][174] ([i915#12358] / [i915#14152] / [i915#7882]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [INCOMPLETE][175] ([i915#12358] / [i915#14152]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2: - shard-rkl: [PASS][176] -> [INCOMPLETE][177] ([i915#12358] / [i915#14152]) +1 other test incomplete [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][178] +69 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#9809]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#13046] / [i915#5354]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#4103]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9833]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#13748]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#13707]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#13707]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3840] / [i915#9053]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#4854]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#1839]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#658]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-9/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9934]) +10 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#9934]) +8 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-9/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9934]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@kms_flip@2x-wf_vblank-ts-check.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9934]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_flip@2x-wf_vblank-ts-check.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637] / [i915#9934]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][202] ([i915#12745] / [i915#4839] / [i915#6113]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12745]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#15643]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#15643]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#15643]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#15643]) +4 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#15643]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#15643]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#15643] / [i915#5190]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#15991] / [i915#5354]) +22 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#15990] / [i915#8708]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#15990] / [i915#8708]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#5439]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-glk: [PASS][215] -> [SKIP][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk3/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#15989]) +25 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#15989]) +26 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#15989]) +15 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][220] +104 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#15989]) +17 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu: - shard-rkl: [PASS][222] -> [SKIP][223] ([i915#15989]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544] / [i915#15102] / [i915#3023]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1825]) +40 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#1825]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#15990] / [i915#8708]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#15991] / [i915#1825]) +7 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544] / [i915#15102]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#15102]) +8 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#15102]) +27 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#15102]) +24 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#15989]) +6 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#15989]) +10 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-onoff: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#15989]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-onoff.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-2p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#14544]) +7 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#15991]) +27 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15991]) +8 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-4/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#9766]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +17 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102] / [i915#3458]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][243] +209 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#15102]) +22 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15102] / [i915#3023]) +16 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#15102]) +38 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#15990]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-14/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15990]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#15990]) +19 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-rte: - shard-dg1: NOTRUN -> [SKIP][250] +22 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#4423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#16012] / [i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#16012]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#16012]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-3-xrgb16161616f: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#16012]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#14543] / [i915#16011]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#16011]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#16011]) +6 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#16012] / [i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#16012]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#16012]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#16011]) +6 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-14/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][264] -> [SKIP][265] ([i915#16011] / [i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#16011] / [i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-1-xrgb16161616f: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#16011]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#16011]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15460]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15459]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#15458]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#13688]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#15460]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#15458]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#15638] / [i915#15722]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#6301]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][277] +6 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#14712]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#13705]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#13705]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#15709]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#15709]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#15709]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#15709]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#15608]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#15709]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-6/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#15709]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#14544] / [i915#15709]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][289] ([i915#12178]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][290] ([i915#7862]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][291] ([i915#10647] / [i915#12169]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][292] ([i915#10647]) +1 other test fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk11: NOTRUN -> [FAIL][293] ([i915#10647] / [i915#12169]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][294] ([i915#10647]) +1 other test fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#13958]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#13958]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][297] ([i915#13958]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#14259]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-5/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][299] ([i915#14259]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#13046] / [i915#5354] / [i915#9423]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15329]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#14544] / [i915#15329] / [i915#3555]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#15329] / [i915#3555]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#15329] / [i915#3555]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#14544] / [i915#15329]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#15329]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#15329]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#9812]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12343]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#14544] / [i915#5354]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#15948]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][312] ([i915#15752]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#8430]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#15073]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][315] -> [SKIP][316] ([i915#15073]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][317] -> [SKIP][318] ([i915#15073]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#15073]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][320] +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#6524]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#6524]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][323] ([i915#11520]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk10/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12316]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][325] ([i915#11520]) +14 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#11520] / [i915#14544]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#11520]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-glk11: NOTRUN -> [SKIP][328] ([i915#11520]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#11520]) +7 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +5 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#11520]) +4 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][332] ([i915#11520]) +3 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#11520]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#9683]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#9683]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +15 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-8/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9732]) +18 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#9688]) +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-2/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-primary-blt: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +5 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-18/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +22 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9732]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#15949]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][345] ([i915#15492]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk4/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12755] / [i915#15867]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][348] ([i915#12755] / [i915#15867]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#5289]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu: NOTRUN -> [SKIP][350] ([i915#5289]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][351] ([i915#13179]) +1 other test abort [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb4/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-snb: [PASS][352] -> [FAIL][353] ([i915#15106]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-snb4/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb6/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#14544] / [i915#3555]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][355] ([i915#12276]) +1 other test incomplete [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9906]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#15243] / [i915#3555]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#11920]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-9/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_vrr@max-min.html - shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#9906]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-1/igt@kms_vrr@max-min.html - shard-dg1: NOTRUN -> [SKIP][361] ([i915#9906]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#8808] / [i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-1/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#9906]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#14544] / [i915#2435]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf@polling@0-rcs0: - shard-mtlp: [PASS][366] -> [FAIL][367] ([i915#10538]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-1/igt@perf@polling@0-rcs0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-8/igt@perf@polling@0-rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][369] -> [FAIL][370] ([i915#4349]) +6 other tests fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][371] -> [FAIL][372] ([i915#4349]) +7 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vcs1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][373] -> [FAIL][374] ([i915#4349]) +6 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#14121]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#3708] / [i915#4077]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [FAIL][377] ([i915#12910]) +9 other tests fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html #### Possible fixes #### * igt@gem_eio@kms: - shard-rkl: [DMESG-WARN][378] ([i915#13363]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@gem_eio@kms.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@gem_eio@kms.html - shard-tglu: [DMESG-WARN][380] ([i915#13363]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-tglu-5/igt@gem_eio@kms.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-3/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-tglu: [FAIL][382] ([i915#15816]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-tglu-8/igt@gem_exec_big@single.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-9/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][384] ([i915#13356]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html * igt@gem_workarounds@suspend-resume: - shard-snb: [ABORT][386] ([i915#15840]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-snb5/igt@gem_workarounds@suspend-resume.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb5/igt@gem_workarounds@suspend-resume.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][388] ([i915#13029] / [i915#14545]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-14/igt@i915_module_load@reload-no-display.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][390] ([i915#14545]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-8/igt@i915_module_load@resize-bar.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@i915_module_load@resize-bar.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][392] ([i915#13729] / [i915#13821]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-snb7/igt@i915_pm_rps@reset.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [FAIL][394] ([i915#15365]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-1/igt@i915_pm_rps@waitboost.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-4/igt@i915_pm_rps@waitboost.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: [INCOMPLETE][396] ([i915#4817]) -> [PASS][397] +2 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2: - shard-glk: [FAIL][398] ([i915#14888]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][400] ([i915#15733] / [i915#5138]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: [DMESG-WARN][402] ([i915#4423]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-12/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][404] ([i915#15582]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][406] ([i915#13566]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-expired-vblank: - shard-mtlp: [FAIL][408] ([i915#13027]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-1/igt@kms_flip@flip-vs-expired-vblank.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@plain-flip-ts-check: - shard-dg1: [FAIL][410] ([i915#14600]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-14/igt@kms_flip@plain-flip-ts-check.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-13/igt@kms_flip@plain-flip-ts-check.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt: - shard-dg2: [SKIP][412] ([i915#15989]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-rkl: [SKIP][414] ([i915#15989]) -> [PASS][415] +12 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-render: - shard-glk: [SKIP][416] -> [PASS][417] +2 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-render.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][418] ([i915#16011] / [i915#3555] / [i915#8228]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][420] ([i915#15073]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: [SKIP][422] ([i915#15073]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][424] ([i915#14419]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][426] ([i915#15420]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-mtlp-8/igt@kms_vrr@negative-basic.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-mtlp-3/igt@kms_vrr@negative-basic.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][428] ([i915#8411]) -> [SKIP][429] ([i915#14544] / [i915#8411]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][430] ([i915#3555] / [i915#9323]) -> [SKIP][431] ([i915#14544] / [i915#3555] / [i915#9323]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#9323]) -> [SKIP][433] ([i915#9323]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#7697]) -> [SKIP][435] ([i915#7697]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][436] ([i915#8562]) -> [SKIP][437] ([i915#14544] / [i915#8562]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@gem_create@create-ext-set-pat.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#3281]) -> [SKIP][439] ([i915#3281]) +2 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][440] ([i915#3281]) -> [SKIP][441] ([i915#14544] / [i915#3281]) +3 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#4613]) -> [SKIP][443] ([i915#4613]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gem_lmem_swapping@verify.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][444] ([i915#4613]) -> [SKIP][445] ([i915#14544] / [i915#4613]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#3282]) -> [SKIP][447] ([i915#3282]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#8411]) -> [SKIP][449] ([i915#8411]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: [SKIP][450] ([i915#3297]) -> [SKIP][451] ([i915#14544] / [i915#3297]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][452] ([i915#2527]) -> [SKIP][453] ([i915#14544] / [i915#2527]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#2527]) -> [SKIP][455] ([i915#2527]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#15479]) -> [SKIP][457] ([i915#15479]) +4 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@i915_module_load@fault-injection@__uc_init.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#5286]) -> [SKIP][459] ([i915#5286]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][460] ([i915#5286]) -> [SKIP][461] ([i915#14544] / [i915#5286]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3638]) -> [SKIP][463] ([i915#3638]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][464] ([i915#3638]) -> [SKIP][465] ([i915#14544] / [i915#3638]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][466] -> [SKIP][467] ([i915#14544]) +21 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: [SKIP][468] ([i915#14544]) -> [SKIP][469] +17 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#6095]) -> [SKIP][471] ([i915#6095]) +7 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][472] ([i915#12313] / [i915#14544]) -> [SKIP][473] ([i915#12313]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: [SKIP][474] ([i915#12313]) -> [SKIP][475] ([i915#12313] / [i915#14544]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][476] ([i915#14098] / [i915#6095]) -> [SKIP][477] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][478] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][479] ([i915#14098] / [i915#6095]) +9 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][480] ([i915#6095]) -> [SKIP][481] ([i915#14544] / [i915#6095]) +3 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][482] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][483] ([i915#11151] / [i915#7828]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: [SKIP][484] ([i915#11151] / [i915#7828]) -> [SKIP][485] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#15330]) -> [SKIP][487] ([i915#15330]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#15865]) -> [SKIP][489] ([i915#15865]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_content_protection@lic-type-0.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@suspend-resume: - shard-rkl: [SKIP][490] ([i915#15865]) -> [SKIP][491] ([i915#14544] / [i915#15865]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-8/igt@kms_content_protection@suspend-resume.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent: - shard-dg2: [FAIL][492] ([i915#1339] / [i915#7173]) -> [SKIP][493] ([i915#15865]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-10/igt@kms_content_protection@uevent.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][494] ([i915#3555]) -> [SKIP][495] ([i915#14544] / [i915#3555]) +3 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][496] ([i915#4103]) -> [SKIP][497] ([i915#14544] / [i915#4103]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][498] ([i915#13749] / [i915#14544]) -> [SKIP][499] ([i915#13749]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][500] ([i915#3555] / [i915#3840]) -> [SKIP][501] ([i915#14544] / [i915#3555] / [i915#3840]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: [SKIP][502] ([i915#9934]) -> [SKIP][503] ([i915#14544] / [i915#9934]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#9934]) -> [SKIP][505] ([i915#9934]) +5 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][506] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][507] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk9/igt@kms_flip@flip-vs-suspend.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: [INCOMPLETE][508] ([i915#6113]) -> [ABORT][509] ([i915#15132]) +1 other test abort [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][510] ([i915#12745]) -> [INCOMPLETE][511] ([i915#12314] / [i915#12745] / [i915#6113]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][512] ([i915#15643]) -> [SKIP][513] ([i915#14544] / [i915#15643]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#15643]) -> [SKIP][515] ([i915#15643]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-dg1: [SKIP][516] ([i915#4423]) -> [SKIP][517] +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][518] ([i915#1825]) -> [SKIP][519] ([i915#14544] / [i915#1825]) +6 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: [SKIP][520] ([i915#15102] / [i915#3458]) -> [SKIP][521] ([i915#15102] / [i915#3458] / [i915#4423]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-rkl: [SKIP][522] ([i915#15102]) -> [SKIP][523] ([i915#14544] / [i915#15102]) +6 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render: - shard-dg1: [SKIP][524] ([i915#15989]) -> [SKIP][525] ([i915#15989] / [i915#4423]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][526] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][527] ([i915#15102] / [i915#3458]) +3 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][529] ([i915#15102] / [i915#3023]) +6 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][530] ([i915#15102] / [i915#3023]) -> [SKIP][531] ([i915#14544] / [i915#15102] / [i915#3023]) +10 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#1825]) -> [SKIP][533] ([i915#1825]) +13 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][534] ([i915#15102] / [i915#3458]) -> [SKIP][535] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#15102]) -> [SKIP][537] ([i915#15102]) +6 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][538] ([i915#15460]) -> [SKIP][539] ([i915#14544] / [i915#15460]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: [SKIP][540] ([i915#15709]) -> [SKIP][541] ([i915#14544] / [i915#15709]) +2 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#15709]) -> [SKIP][543] ([i915#15709]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15329]) -> [SKIP][545] ([i915#15329]) +3 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][546] ([i915#5354]) -> [SKIP][547] ([i915#14544] / [i915#5354]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][548] ([i915#3828]) -> [SKIP][549] ([i915#9340]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: [SKIP][550] ([i915#9340]) -> [SKIP][551] ([i915#3828]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][552] ([i915#8430]) -> [SKIP][553] ([i915#14544] / [i915#8430]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][554] ([i915#15073]) -> [SKIP][555] ([i915#14544] / [i915#15073]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][556] ([i915#6524]) -> [SKIP][557] ([i915#14544] / [i915#6524]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][558] ([i915#11520]) -> [SKIP][559] ([i915#11520] / [i915#14544]) +2 other tests skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][560] ([i915#11520] / [i915#14544]) -> [SKIP][561] ([i915#11520]) +4 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: [SKIP][562] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][563] ([i915#1072] / [i915#9732]) +5 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-move: - shard-rkl: [SKIP][564] ([i915#1072] / [i915#9732]) -> [SKIP][565] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-8/igt@kms_psr@psr2-cursor-plane-move.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: [SKIP][566] ([i915#15867]) -> [SKIP][567] ([i915#12755] / [i915#15867]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][568] ([i915#14544] / [i915#5289]) -> [SKIP][569] ([i915#5289]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][570] ([i915#9906]) -> [SKIP][571] ([i915#14544] / [i915#9906]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][572] ([i915#2436]) -> [SKIP][573] ([i915#14544] / [i915#2436]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][574] ([i915#3708]) -> [SKIP][575] ([i915#14544] / [i915#3708]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8899/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14543 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8899 -> IGTPW_15125 CI-20190529: 20190529 CI_DRM_18434: ad7a1f718b8cb631948c94f74dd48cd2867d99fb @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15125: 78bc08809f5e2b3495c93284720bc3a7f65901b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8899: 3e5747e536f148bf232049e49a00e2b683f91a83 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15125/index.html [-- Attachment #2: Type: text/html, Size: 196290 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-05-08 2:24 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-07 5:34 [PATCH v6 0/2] Wa_14026633728 Shekhar Chauhan 2026-05-07 5:34 ` [PATCH v6 1/2] lib/intel_wa: Check for device workarounds Shekhar Chauhan 2026-05-07 5:34 ` [PATCH v6 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan 2026-05-07 5:50 ` Shekhar Chauhan 2026-05-07 15:11 ` Dixit, Ashutosh 2026-05-08 2:23 ` Shekhar Chauhan 2026-05-07 7:16 ` ✓ Xe.CI.BAT: success for Wa_14026633728 (rev3) Patchwork 2026-05-07 7:19 ` ✓ i915.CI.BAT: " Patchwork 2026-05-07 16:52 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-07 17:16 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox