* [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests.
@ 2025-07-10 4:48 Sobin Thomas
2025-07-10 4:48 ` [PATCH v2 i-g-t 1/1] " Sobin Thomas
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Sobin Thomas @ 2025-07-10 4:48 UTC (permalink / raw)
To: igt-dev; +Cc: zbigniew.kempczynski, Sobin Thomas
Added checks for platforms with graphics_ver < 20 (e.g. PVC) in memcpy and memset for tests
with extended parameters.
This update includes:
- Handling of tests for PAGE_COPY mode (memcpy) and larger-sized writes (memset).
- On platforms with graphics_ver < 20, memset is limited to a maximum fill width of U18-1.
and memcopy tests using page copy is skipped.
- Any values greater than 0x3FFFF will now be skipped for memset-linear to prevent overflows
or undefined behavior.
Sobin Thomas (1):
tests/intel/xe_copy : Add check for memset and memcpy tests.
tests/intel/xe_copy_basic.c | 5 +++++
1 file changed, 5 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH v2 i-g-t 1/1] tests/intel/xe_copy : Add check for memset and memcpy tests. 2025-07-10 4:48 [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests Sobin Thomas @ 2025-07-10 4:48 ` Sobin Thomas 2025-07-10 11:50 ` Zbigniew Kempczyński 2025-07-10 7:45 ` ✓ i915.CI.BAT: success for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Sobin Thomas @ 2025-07-10 4:48 UTC (permalink / raw) To: igt-dev; +Cc: zbigniew.kempczynski, Sobin Thomas Added checks for platforms with graphics_ver < 20 (e.g., PVC) in xe_memcpy (page copy) and memset tests (e.g., xe-memset-linear) using extended parameters. Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> --- tests/intel/xe_copy_basic.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/intel/xe_copy_basic.c b/tests/intel/xe_copy_basic.c index 5a050b82c..2996a496b 100644 --- a/tests/intel/xe_copy_basic.c +++ b/tests/intel/xe_copy_basic.c @@ -261,6 +261,7 @@ const char *help_str = igt_main_args("b", NULL, help_str, opt_handler, NULL) { int fd; + uint16_t dev_id; struct igt_collection *set, *regions; uint32_t region; struct rect linear[] = { { 0, 0xfd, 1, MODE_BYTE }, @@ -274,6 +275,7 @@ igt_main_args("b", NULL, help_str, opt_handler, NULL) igt_fixture { fd = drm_open_driver(DRIVER_XE); + dev_id = intel_get_drm_devid(fd); xe_device_get(fd); set = xe_get_memory_region_set(fd, DRM_XE_MEM_REGION_CLASS_SYSMEM, @@ -293,6 +295,7 @@ igt_main_args("b", NULL, help_str, opt_handler, NULL) for (int i = 0; i < ARRAY_SIZE(page); i++) { igt_subtest_f("mem-page-copy-%u", page[i].width) { igt_require(blt_has_mem_copy(fd)); + igt_require(intel_get_device_info(dev_id)->graphics_ver >= 20); for_each_variation_r(regions, 1, set) { region = igt_collection_get_value(regions, 0); copy_test(fd, &page[i], MEM_COPY, region); @@ -312,6 +315,13 @@ igt_main_args("b", NULL, help_str, opt_handler, NULL) for (int i = 0; i < ARRAY_SIZE(linear); i++) { igt_subtest_f("mem-set-linear-0x%x", linear[i].width) { + /* Skip mem-set-linear test for values greater than + * 0x3FFFF. As hardware with graphics_ver<20 support + * till 0x3FFFF. + */ + if ((linear[i].width > 0x3ffff) && + (intel_get_device_info(dev_id)->graphics_ver < 20)) + igt_skip("Skipping: width exceeds 18-bit limit on gfx_ver < 20."); igt_require(blt_has_mem_set(fd)); for_each_variation_r(regions, 1, set) { region = igt_collection_get_value(regions, 0); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 i-g-t 1/1] tests/intel/xe_copy : Add check for memset and memcpy tests. 2025-07-10 4:48 ` [PATCH v2 i-g-t 1/1] " Sobin Thomas @ 2025-07-10 11:50 ` Zbigniew Kempczyński 0 siblings, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2025-07-10 11:50 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev On Thu, Jul 10, 2025 at 04:48:09AM +0000, Sobin Thomas wrote: > Added checks for platforms with graphics_ver < 20 (e.g., PVC) in xe_memcpy (page copy) > and memset tests (e.g., xe-memset-linear) using extended parameters. According to checkpatch this should fit in 75 characters line width, but this is minor nit. For the code: Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > > Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> > --- > tests/intel/xe_copy_basic.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/tests/intel/xe_copy_basic.c b/tests/intel/xe_copy_basic.c > index 5a050b82c..2996a496b 100644 > --- a/tests/intel/xe_copy_basic.c > +++ b/tests/intel/xe_copy_basic.c > @@ -261,6 +261,7 @@ const char *help_str = > igt_main_args("b", NULL, help_str, opt_handler, NULL) > { > int fd; > + uint16_t dev_id; > struct igt_collection *set, *regions; > uint32_t region; > struct rect linear[] = { { 0, 0xfd, 1, MODE_BYTE }, > @@ -274,6 +275,7 @@ igt_main_args("b", NULL, help_str, opt_handler, NULL) > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > + dev_id = intel_get_drm_devid(fd); > xe_device_get(fd); > set = xe_get_memory_region_set(fd, > DRM_XE_MEM_REGION_CLASS_SYSMEM, > @@ -293,6 +295,7 @@ igt_main_args("b", NULL, help_str, opt_handler, NULL) > for (int i = 0; i < ARRAY_SIZE(page); i++) { > igt_subtest_f("mem-page-copy-%u", page[i].width) { > igt_require(blt_has_mem_copy(fd)); > + igt_require(intel_get_device_info(dev_id)->graphics_ver >= 20); > for_each_variation_r(regions, 1, set) { > region = igt_collection_get_value(regions, 0); > copy_test(fd, &page[i], MEM_COPY, region); > @@ -312,6 +315,13 @@ igt_main_args("b", NULL, help_str, opt_handler, NULL) > > for (int i = 0; i < ARRAY_SIZE(linear); i++) { > igt_subtest_f("mem-set-linear-0x%x", linear[i].width) { > + /* Skip mem-set-linear test for values greater than > + * 0x3FFFF. As hardware with graphics_ver<20 support > + * till 0x3FFFF. > + */ > + if ((linear[i].width > 0x3ffff) && > + (intel_get_device_info(dev_id)->graphics_ver < 20)) > + igt_skip("Skipping: width exceeds 18-bit limit on gfx_ver < 20."); > igt_require(blt_has_mem_set(fd)); > for_each_variation_r(regions, 1, set) { > region = igt_collection_get_value(regions, 0); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) 2025-07-10 4:48 [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests Sobin Thomas 2025-07-10 4:48 ` [PATCH v2 i-g-t 1/1] " Sobin Thomas @ 2025-07-10 7:45 ` Patchwork 2025-07-10 8:01 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-10 7:45 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4429 bytes --] == Series Details == Series: tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) URL : https://patchwork.freedesktop.org/series/151334/ State : success == Summary == CI Bug Log - changes from IGT_8449 -> IGTPW_13441 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13441 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-arlh-3/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-mtlp-8/igt@i915_selftest@live.html - bat-dg2-11: [ABORT][7] ([i915#12061] / [i915#14556]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-dg2-11/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - bat-dg2-8: [ABORT][9] ([i915#14201]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-dg2-8/igt@i915_selftest@live@client.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-dg2-8/igt@i915_selftest@live@client.html - bat-dg2-11: [ABORT][11] ([i915#14201]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-dg2-11/igt@i915_selftest@live@client.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-dg2-11/igt@i915_selftest@live@client.html * igt@i915_selftest@live@reset: - bat-atsm-1: [ABORT][13] ([i915#14201]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-atsm-1/igt@i915_selftest@live@reset.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-atsm-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-dg2-11/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-dg2-11/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [ABORT][17] ([i915#14201]) -> [DMESG-FAIL][18] ([i915#12061] / [i915#13929]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/bat-atsm-1/igt@i915_selftest@live.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/bat-atsm-1/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14556]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14556 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8449 -> IGTPW_13441 CI-20190529: 20190529 CI_DRM_16837: 7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13441: 25092973d9af46bf06598684bb9a077eec0b3f65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8449: bfa2e7bb44a2e0fe43d2ae474db0dff766080b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/index.html [-- Attachment #2: Type: text/html, Size: 5764 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) 2025-07-10 4:48 [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests Sobin Thomas 2025-07-10 4:48 ` [PATCH v2 i-g-t 1/1] " Sobin Thomas 2025-07-10 7:45 ` ✓ i915.CI.BAT: success for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) Patchwork @ 2025-07-10 8:01 ` Patchwork 2025-07-10 8:59 ` ✓ Xe.CI.Full: " Patchwork 2025-07-10 10:43 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-10 8:01 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 976 bytes --] == Series Details == Series: tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) URL : https://patchwork.freedesktop.org/series/151334/ State : success == Summary == CI Bug Log - changes from XEIGT_8449_BAT -> XEIGTPW_13441_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8449 -> IGTPW_13441 IGTPW_13441: 25092973d9af46bf06598684bb9a077eec0b3f65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8449: bfa2e7bb44a2e0fe43d2ae474db0dff766080b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3385-7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0: 7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/index.html [-- Attachment #2: Type: text/html, Size: 1521 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.Full: success for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) 2025-07-10 4:48 [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests Sobin Thomas ` (2 preceding siblings ...) 2025-07-10 8:01 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-07-10 8:59 ` Patchwork 2025-07-10 10:43 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-10 8:59 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 101845 bytes --] == Series Details == Series: tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) URL : https://patchwork.freedesktop.org/series/151334/ State : success == Summary == CI Bug Log - changes from XEIGT_8449_FULL -> XEIGTPW_13441_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13441_FULL: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_copy_basic@mem-set-linear-0x8fffe}: - shard-dg2-set2: [SKIP][1] ([Intel XE#5300]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x8fffe.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x8fffe.html Known issues ------------ Here are the changes found in XEIGTPW_13441_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#2134]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@fbdev@eof.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@fbdev@eof.html * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1125]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-7/igt@intel_hwmon@hwmon-read.html * igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-on: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#4208] / [Intel XE#4618]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-on.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-on.html * igt@intel_sysfs_debugfs@xe-forcewake: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#4208] / [Intel XE#4618]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@intel_sysfs_debugfs@xe-forcewake.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2351] / [Intel XE#4208]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#610]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1428]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2669]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +146 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#3432]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][31] ([Intel XE#3124] / [Intel XE#4345]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][32] ([Intel XE#1727] / [Intel XE#3113]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#4417]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#4208] / [i915#2575]) +6 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1188]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-1/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2321]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#309]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][53] -> [FAIL][54] ([Intel XE#4633]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#4494]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3009]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-7/igt@kms_dp_aux_dev.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#4294]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2373]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-1/igt@kms_feature_discovery@display-2x.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +11 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#301]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: NOTRUN -> [FAIL][68] ([Intel XE#301]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2293]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-edid: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#352]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-3/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#651]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#5390]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][76] -> [SKIP][77] ([Intel XE#2351] / [Intel XE#4208]) +12 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#651]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2311]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2312]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2313]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#656]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#653]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#3374] / [Intel XE#3544]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#3374] / [Intel XE#3544]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1503]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1503]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2927]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_joiner@basic-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#2927]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#3012]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_lease@invalid-create-leases: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#4208] / [i915#2575]) +93 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_lease@invalid-create-leases.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_lease@invalid-create-leases.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4329]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#4329]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#616]) +2 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_multiple@2x-tiling-none: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4596]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [FAIL][98] ([Intel XE#4658]) +3 other tests fail [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-7/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#2571]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2392]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1489]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2893] / [Intel XE#4608]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4608]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2893]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1406]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#3414] / [Intel XE#3904]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#3414] / [Intel XE#3904]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1499]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@kms_vrr@negative-basic.html * igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#455]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1280] / [Intel XE#455]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1123]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4837]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@xe_eudebug@basic-vm-access.html * igt@xe_eudebug@basic-vm-bind-vm-destroy: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#4837]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-vm-destroy.html * igt@xe_eudebug_online@debugger-reopen: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#4837]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-4/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#688]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2322]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1392]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#1392]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#288]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4943]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-6/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html * igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4943]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-4/igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#4915]) +33 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#4208]) +33 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [PASS][131] -> [FAIL][132] ([Intel XE#5018]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][133] -> [SKIP][134] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@xe_live_ktest@xe_bo.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#2229]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#5100]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-2/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_oa@mmio-triggered-reports: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2541] / [Intel XE#3573]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2284] / [Intel XE#366]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pxp@pxp-stale-bo-bind-post-suspend: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#4733]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#4733]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_vm@large-split-binds-536870912: - shard-dg2-set2: [PASS][143] -> [SKIP][144] ([Intel XE#4208]) +251 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@xe_vm@large-split-binds-536870912.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_vm@large-split-binds-536870912.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][145] ([Intel XE#3718] / [Intel XE#827]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][147] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][149] ([Intel XE#2291]) -> [PASS][150] +4 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][151] ([Intel XE#2316]) -> [PASS][152] +5 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][153] ([Intel XE#301]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2-set2: [SKIP][155] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][156] +13 other tests pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][157] ([Intel XE#1503]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-6/igt@kms_hdr@static-swap.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-8/igt@kms_hdr@static-swap.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [SKIP][159] ([Intel XE#4596]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][161] ([Intel XE#718]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [SKIP][163] ([Intel XE#4208] / [i915#2575]) -> [PASS][164] +79 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [SKIP][165] ([Intel XE#4208]) -> [PASS][166] +195 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_exec_basic@many-null-rebind.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [SKIP][167] ([Intel XE#1392]) -> [PASS][168] +2 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map: - shard-lnl: [FAIL][169] -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][171] ([Intel XE#4208] / [i915#2575]) -> [SKIP][172] ([Intel XE#873]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_async_flips@invalid-async-flip.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][173] ([Intel XE#3768]) -> [SKIP][174] ([Intel XE#4208] / [i915#2575]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@kms_async_flips@invalid-async-flip-atomic.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-dg2-set2: [SKIP][175] ([Intel XE#316]) -> [SKIP][176] ([Intel XE#2351] / [Intel XE#4208]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@kms_big_fb@linear-64bpp-rotate-270.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][177] ([Intel XE#4208]) -> [SKIP][178] ([Intel XE#316]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][179] ([Intel XE#316]) -> [SKIP][180] ([Intel XE#4208]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][181] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][182] ([Intel XE#316]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][183] ([Intel XE#1124]) -> [SKIP][184] ([Intel XE#4208]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][185] ([Intel XE#1124]) -> [SKIP][186] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][187] ([Intel XE#4208]) -> [SKIP][188] ([Intel XE#610]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][189] ([Intel XE#4208]) -> [SKIP][190] ([Intel XE#1124]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][191] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][192] ([Intel XE#1124]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][193] ([Intel XE#4208] / [i915#2575]) -> [SKIP][194] ([Intel XE#2191]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][195] ([Intel XE#2191]) -> [SKIP][196] ([Intel XE#4208] / [i915#2575]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][197] ([Intel XE#367]) -> [SKIP][198] ([Intel XE#4208] / [i915#2575]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][199] ([Intel XE#4208] / [i915#2575]) -> [SKIP][200] ([Intel XE#367]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][201] ([Intel XE#2907]) -> [SKIP][202] ([Intel XE#4208]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][203] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][204] ([Intel XE#4208]) +8 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][205] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][206] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][207] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][208] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][209] ([Intel XE#3442]) -> [SKIP][210] ([Intel XE#4208]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][211] ([Intel XE#2351] / [Intel XE#4208]) -> [INCOMPLETE][212] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][213] ([Intel XE#4208]) -> [SKIP][214] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][215] ([Intel XE#306]) -> [SKIP][216] ([Intel XE#4208] / [i915#2575]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][217] ([Intel XE#4208] / [i915#2575]) -> [SKIP][218] ([Intel XE#373]) +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][219] ([Intel XE#373]) -> [SKIP][220] ([Intel XE#4208] / [i915#2575]) +10 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][221] ([Intel XE#4208] / [i915#2575]) -> [FAIL][222] ([Intel XE#1178]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][223] ([Intel XE#307]) -> [SKIP][224] ([Intel XE#4208] / [i915#2575]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-bmg: [FAIL][225] ([Intel XE#1178]) -> [SKIP][226] ([Intel XE#2341]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-3/igt@kms_content_protection@srm.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][227] ([Intel XE#2341]) -> [FAIL][228] ([Intel XE#1188]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-6/igt@kms_content_protection@uevent.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][229] ([Intel XE#4208] / [i915#2575]) -> [SKIP][230] ([Intel XE#308]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][231] ([Intel XE#308]) -> [SKIP][232] ([Intel XE#4208] / [i915#2575]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][233] ([Intel XE#4208] / [i915#2575]) -> [SKIP][234] ([Intel XE#455]) +8 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_cursor_crc@cursor-random-max-size.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][235] ([Intel XE#323]) -> [SKIP][236] ([Intel XE#4208] / [i915#2575]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][237] ([Intel XE#4208] / [i915#2575]) -> [SKIP][238] ([Intel XE#323]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2-set2: [SKIP][239] ([Intel XE#4208]) -> [SKIP][240] ([Intel XE#4356]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_dp_link_training@uhbr-sst.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][241] ([Intel XE#455]) -> [SKIP][242] ([Intel XE#4208]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@kms_dsc@dsc-with-bpc.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][243] ([Intel XE#455]) -> [SKIP][244] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][245] ([Intel XE#4208]) -> [SKIP][246] ([Intel XE#455]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg2-set2: [SKIP][247] ([Intel XE#4208]) -> [SKIP][248] ([Intel XE#4422]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][249] ([Intel XE#4208]) -> [SKIP][250] ([Intel XE#776]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_fbcon_fbt@psr.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][251] ([Intel XE#701]) -> [SKIP][252] ([Intel XE#4208] / [i915#2575]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@kms_feature_discovery@chamelium.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][253] ([Intel XE#4208] / [i915#2575]) -> [SKIP][254] ([Intel XE#1138]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_feature_discovery@display-4x.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][255] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][256] ([Intel XE#301]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2-set2: [SKIP][257] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][258] ([Intel XE#455]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][259] ([Intel XE#651]) -> [SKIP][260] ([Intel XE#4208]) +31 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][261] ([Intel XE#2312]) -> [SKIP][262] ([Intel XE#2311]) +15 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: [SKIP][263] ([Intel XE#651]) -> [SKIP][264] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-slowdraw.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-slowdraw.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][265] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][266] ([Intel XE#651]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][267] ([Intel XE#2312]) -> [SKIP][268] ([Intel XE#5390]) +10 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][269] ([Intel XE#5390]) -> [SKIP][270] ([Intel XE#2312]) +8 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][271] ([Intel XE#2311]) -> [SKIP][272] ([Intel XE#2312]) +23 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][273] ([Intel XE#4208]) -> [SKIP][274] ([Intel XE#651]) +26 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][275] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][276] ([Intel XE#658]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][277] ([Intel XE#653]) -> [SKIP][278] ([Intel XE#4208]) +25 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][279] ([Intel XE#2313]) -> [SKIP][280] ([Intel XE#2312]) +19 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][281] ([Intel XE#2312]) -> [SKIP][282] ([Intel XE#2313]) +16 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][283] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][284] ([Intel XE#653]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][285] ([Intel XE#653]) -> [SKIP][286] ([Intel XE#2351] / [Intel XE#4208]) +12 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][287] ([Intel XE#4208]) -> [SKIP][288] ([Intel XE#653]) +19 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-slowdraw.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][289] ([Intel XE#455]) -> [SKIP][290] ([Intel XE#4208] / [i915#2575]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_hdr@invalid-hdr.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][291] ([Intel XE#2925]) -> [SKIP][292] ([Intel XE#4208]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: [SKIP][293] ([Intel XE#4298]) -> [SKIP][294] ([Intel XE#4208]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@kms_joiner@basic-max-non-joiner.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][295] ([Intel XE#4208]) -> [SKIP][296] ([Intel XE#2927]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_joiner@basic-ultra-joiner.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][297] ([Intel XE#346]) -> [SKIP][298] ([Intel XE#4208]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][299] ([Intel XE#4208]) -> [SKIP][300] ([Intel XE#2925]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [SKIP][301] ([Intel XE#4208] / [i915#2575]) -> [FAIL][302] ([Intel XE#616]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_plane_cursor@primary.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_plane_cursor@primary.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg2-set2: [SKIP][303] ([Intel XE#5021]) -> [SKIP][304] ([Intel XE#4208] / [i915#2575]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-yf.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2-set2: [SKIP][305] ([Intel XE#5020]) -> [SKIP][306] ([Intel XE#4208] / [i915#2575]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@kms_plane_multiple@tiling-yf.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][307] ([Intel XE#4208]) -> [SKIP][308] ([Intel XE#870]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][309] ([Intel XE#4208]) -> [SKIP][310] ([Intel XE#2938]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][311] ([Intel XE#870]) -> [SKIP][312] ([Intel XE#4208]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@kms_pm_backlight@fade.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][313] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][314] ([Intel XE#1129]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][315] ([Intel XE#4208]) -> [SKIP][316] ([Intel XE#1489]) +7 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][317] ([Intel XE#1489]) -> [SKIP][318] ([Intel XE#4208]) +9 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][319] ([Intel XE#4208]) -> [SKIP][320] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-render.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][321] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][322] ([Intel XE#4208]) +16 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][323] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][324] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_psr@psr-dpms.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][325] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][326] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][327] ([Intel XE#3414]) -> [SKIP][328] ([Intel XE#4208] / [i915#2575]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-90.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][329] ([Intel XE#4208] / [i915#2575]) -> [SKIP][330] ([Intel XE#3414]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@basic: - shard-dg2-set2: [FAIL][331] ([Intel XE#2883]) -> [SKIP][332] ([Intel XE#4208] / [i915#2575]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@kms_setmode@basic.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_setmode@basic.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][333] ([Intel XE#2168]) -> [SKIP][334] ([Intel XE#4208] / [i915#2575]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@kms_vrr@lobf.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@kms_vrr@lobf.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][335] ([Intel XE#4208]) -> [SKIP][336] ([Intel XE#1280] / [Intel XE#455]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_compute_preempt@compute-preempt.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][337] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][338] ([Intel XE#4208]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][339] ([Intel XE#1123]) -> [SKIP][340] ([Intel XE#4208]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][341] ([Intel XE#4208]) -> [SKIP][342] ([Intel XE#1126]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x369.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][343] ([Intel XE#1126]) -> [SKIP][344] ([Intel XE#4208]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eu_stall@invalid-gt-id: - shard-dg2-set2: [SKIP][345] ([Intel XE#5419]) -> [SKIP][346] ([Intel XE#4208]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@xe_eu_stall@invalid-gt-id.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_eu_stall@invalid-gt-id.html * igt@xe_eu_stall@invalid-sampling-rate: - shard-dg2-set2: [SKIP][347] ([Intel XE#4208]) -> [SKIP][348] ([Intel XE#5419]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_eu_stall@invalid-sampling-rate.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_eu_stall@invalid-sampling-rate.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: [SKIP][349] ([Intel XE#4208]) -> [SKIP][350] ([Intel XE#4837]) +16 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][351] ([Intel XE#4837]) -> [SKIP][352] ([Intel XE#4208]) +15 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@xe_eudebug_online@resume-dss.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_eudebug_online@resume-dss.html * igt@xe_eudebug_sriov@deny-sriov: - shard-dg2-set2: [SKIP][353] ([Intel XE#4518]) -> [SKIP][354] ([Intel XE#4208]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@xe_eudebug_sriov@deny-sriov.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][355] ([Intel XE#4208]) -> [SKIP][356] ([Intel XE#1392]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][357] ([Intel XE#4208]) -> [SKIP][358] ([Intel XE#288]) +28 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][359] ([Intel XE#288]) -> [SKIP][360] ([Intel XE#4208]) +36 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][361] ([Intel XE#4208]) -> [SKIP][362] ([Intel XE#2360]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][363] ([Intel XE#2360]) -> [SKIP][364] ([Intel XE#4208]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge: - shard-dg2-set2: [SKIP][365] ([Intel XE#4208]) -> [SKIP][366] ([Intel XE#4915]) +257 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-463/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html * igt@xe_exec_system_allocator@many-large-malloc-nomemset: - shard-dg2-set2: [SKIP][367] ([Intel XE#4915]) -> [SKIP][368] ([Intel XE#4208]) +314 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html * igt@xe_exec_threads@threads-hang-fd-rebind: - shard-dg2-set2: [DMESG-WARN][369] ([Intel XE#3876]) -> [SKIP][370] ([Intel XE#4208]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-rebind.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_exec_threads@threads-hang-fd-rebind.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-dg2-set2: [SKIP][371] ([Intel XE#4208]) -> [ABORT][372] ([Intel XE#4917]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][373] ([Intel XE#4208]) -> [SKIP][374] ([Intel XE#560]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_media_fill@media-fill.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_media_fill@media-fill.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: [SKIP][375] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][376] ([Intel XE#4208]) +6 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-433/igt@xe_oa@missing-sample-flags.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_oa@missing-sample-flags.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][377] ([Intel XE#4208]) -> [SKIP][378] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_oa@polling-small-buf.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-433/igt@xe_oa@polling-small-buf.html * igt@xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: [SKIP][379] ([Intel XE#4208]) -> [SKIP][380] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_oa@syncs-syncobj-cfg.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-466/igt@xe_oa@syncs-syncobj-cfg.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][381] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) -> [SKIP][382] ([Intel XE#4208]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@xe_oa@syncs-ufence-wait-cfg.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][383] ([Intel XE#1337]) -> [SKIP][384] ([Intel XE#4208]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][385] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][386] ([Intel XE#4208]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][387] ([Intel XE#979]) -> [SKIP][388] ([Intel XE#4208]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: [SKIP][389] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][390] ([Intel XE#4208]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@xe_pm@d3cold-basic.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_pm@d3cold-basic.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][391] ([Intel XE#4208]) -> [SKIP][392] ([Intel XE#579]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@fn-engine-activity-load: - shard-dg2-set2: [SKIP][393] ([Intel XE#4650]) -> [SKIP][394] ([Intel XE#4208]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-435/igt@xe_pmu@fn-engine-activity-load.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_pxp@pxp-stale-bo-bind-post-suspend: - shard-dg2-set2: [SKIP][395] ([Intel XE#4208]) -> [SKIP][396] ([Intel XE#4733]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-dg2-set2: [SKIP][397] ([Intel XE#4733]) -> [SKIP][398] ([Intel XE#4208]) +2 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][399] ([Intel XE#4208]) -> [SKIP][400] ([Intel XE#944]) +3 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_query@multigpu-query-engines.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-432/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: [SKIP][401] ([Intel XE#944]) -> [SKIP][402] ([Intel XE#4208]) +4 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_render_copy@render-stress-1-copies: - shard-dg2-set2: [SKIP][403] ([Intel XE#4814]) -> [SKIP][404] ([Intel XE#4208]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-466/igt@xe_render_copy@render-stress-1-copies.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_render_copy@render-stress-1-copies.html * igt@xe_spin_batch@spin-mem-copy: - shard-dg2-set2: [SKIP][405] ([Intel XE#4821]) -> [SKIP][406] ([Intel XE#4208]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-434/igt@xe_spin_batch@spin-mem-copy.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: [SKIP][407] ([Intel XE#4130]) -> [SKIP][408] ([Intel XE#4208]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-432/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-464/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-dg2-set2: [SKIP][409] ([Intel XE#4208]) -> [SKIP][410] ([Intel XE#4130]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_flr@flr-twice: - shard-dg2-set2: [SKIP][411] ([Intel XE#4208]) -> [SKIP][412] ([Intel XE#4273]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8449/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/shard-dg2-436/igt@xe_sriov_flr@flr-twice.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4618]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4618 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5419 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8449 -> IGTPW_13441 IGTPW_13441: 25092973d9af46bf06598684bb9a077eec0b3f65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8449: bfa2e7bb44a2e0fe43d2ae474db0dff766080b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3385-7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0: 7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13441/index.html [-- Attachment #2: Type: text/html, Size: 130867 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) 2025-07-10 4:48 [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests Sobin Thomas ` (3 preceding siblings ...) 2025-07-10 8:59 ` ✓ Xe.CI.Full: " Patchwork @ 2025-07-10 10:43 ` Patchwork 2025-07-10 13:55 ` Thomas, Sobin 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2025-07-10 10:43 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 175597 bytes --] == Series Details == Series: tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) URL : https://patchwork.freedesktop.org/series/151334/ State : failure == Summary == CI Bug Log - changes from IGT_8449_full -> IGTPW_13441_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13441_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13441_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_13441/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13441_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html New tests --------- New tests have been introduced between IGT_8449_full and IGTPW_13441_full: ### New IGT tests (1) ### * igt@kms_rmfb@close-fd@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.19] s Known issues ------------ Here are the changes found in IGTPW_13441_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: [PASS][4] -> [ABORT][5] ([i915#5507]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@device_reset@unbind-reset-rebind.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html - shard-rkl: [PASS][6] -> [ABORT][7] ([i915#5507]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@device_reset@unbind-reset-rebind.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html - shard-tglu: [PASS][8] -> [ABORT][9] ([i915#12817] / [i915#5507]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-10/igt@device_reset@unbind-reset-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html - shard-glk: [PASS][10] -> [ABORT][11] ([i915#5507]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-glk6/igt@device_reset@unbind-reset-rebind.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk8/igt@device_reset@unbind-reset-rebind.html - shard-mtlp: [PASS][12] -> [ABORT][13] ([i915#12817] / [i915#5507]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-3/igt@device_reset@unbind-reset-rebind.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-2/igt@device_reset@unbind-reset-rebind.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@gem_caching@reads.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#13356]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-8/igt@gem_ccs@suspend-resume.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gem_close_race@multigpu-basic-process.html - shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-dg2-9: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb1/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#5882]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][30] ([i915#13390]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk11/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-root: - shard-dg2-9: NOTRUN -> [SKIP][37] +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#3281]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-wc-active.html - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#14544] / [i915#3281]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][52] -> [TIMEOUT][53] ([i915#5493]) +1 other test timeout [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_gtt@basic-wc: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@coherency: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2-9: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][68] ([i915#2658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb7/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][69] ([i915#2658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [PASS][72] -> [TIMEOUT][73] ([i915#12917] / [i915#12964]) +1 other test timeout [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiling_max_stride: - shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#4077]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@gem_userptr_blits@unsync-unmap.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][88] +10 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-glk: NOTRUN -> [ABORT][89] ([i915#5566]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@valid-registers: - shard-dg2-9: NOTRUN -> [SKIP][94] ([i915#2856]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gen9_exec_parse@valid-registers.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#14123]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_drm_fdinfo@all-busy-idle-check-all.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#14123]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@i915_drm_fdinfo@all-busy-idle-check-all.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14123]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#14073]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#13786]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#8399]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][102] -> [INCOMPLETE][103] ([i915#12455] / [i915#13820]) +1 other test incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#11681]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2-9: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5723]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [PASS][108] -> [INCOMPLETE][109] ([i915#4817]) +1 other test incomplete [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@i915_suspend@debugfs-reader.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#7707]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-5/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#7707]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#4212]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4215] / [i915#5190]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk11: NOTRUN -> [SKIP][114] +37 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk11/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_async_flips@crc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#12967] / [i915#6228]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#9531]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) +7 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg1: [PASS][127] -> [DMESG-WARN][128] ([i915#4391] / [i915#4423]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-16/igt@kms_big_fb@y-tiled-addfb.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +9 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][131] +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2: NOTRUN -> [SKIP][133] ([i915#5190]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_busy@basic: - shard-rkl: [PASS][134] -> [SKIP][135] ([i915#11190] / [i915#14544]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_busy@basic.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_busy@basic.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +101 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +29 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +29 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#12805]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#12805]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: [PASS][141] -> [INCOMPLETE][142] ([i915#12796]) +1 other test incomplete [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6095]) +39 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#6095]) +45 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#12313]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#6095]) +121 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4423] / [i915#6095]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +49 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#10434] / [i915#6095]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6095]) +44 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2-9: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color@ctm-0-25: - shard-rkl: NOTRUN -> [SKIP][156] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][157] +47 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#14544] / [i915#7828]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-negative: - shard-rkl: [PASS][165] -> [SKIP][166] ([i915#12655] / [i915#14544]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_color@ctm-negative.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_color@ctm-negative.html * igt@kms_color@deep-color: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#12655] / [i915#3555]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#7118] / [i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#6944] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][175] -> [SKIP][176] ([i915#14544]) +44 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#13049]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8814]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8814]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][185] ([i915#13566]) +1 other test fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][186] -> [FAIL][187] ([i915#13566]) +5 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html - shard-rkl: [PASS][188] -> [DMESG-FAIL][189] ([i915#12964]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1: - shard-rkl: [PASS][190] -> [FAIL][191] ([i915#13566]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1: - shard-rkl: [PASS][192] -> [DMESG-WARN][193] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1.html * igt@kms_cursor_edge_walk@64x64-left-edge: - shard-rkl: [PASS][194] -> [DMESG-WARN][195] ([i915#12964]) +20 other tests dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_cursor_edge_walk@64x64-left-edge.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_cursor_edge_walk@64x64-left-edge.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-glk: [PASS][196] -> [SKIP][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-glk6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#13046] / [i915#5354]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9809]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-rkl: [PASS][202] -> [FAIL][203] ([i915#2346]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#4103] / [i915#4213]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9833]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#3555]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [PASS][207] -> [SKIP][208] ([i915#13749]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_dp_link_training@non-uhbr-sst.html - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#13749]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#13748]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#13707]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#13707]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8812]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2-9: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9053]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#14561]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9337]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#658]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9934]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#9934]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8381]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9934]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#9934]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][227] ([i915#9934]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-dpms-on-nop: - shard-rkl: [PASS][229] -> [SKIP][230] ([i915#14544] / [i915#14553]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_flip@flip-vs-dpms-on-nop.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-rkl: [PASS][231] -> [SKIP][232] ([i915#14544] / [i915#3637]) +8 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_flip@flip-vs-panning-interruptible.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-snb: [PASS][233] -> [INCOMPLETE][234] ([i915#12314] / [i915#12745] / [i915#4839]) +1 other test incomplete [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: - shard-dg1: [PASS][235] -> [DMESG-WARN][236] ([i915#4423]) +5 other tests dmesg-warn [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) +5 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#2587] / [i915#2672]) +6 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg2-9: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#5190]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#14544] / [i915#3555]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672] / [i915#3555]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#2672]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#2587] / [i915#2672] / [i915#3555]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-rkl: [PASS][247] -> [SKIP][248] ([i915#14544] / [i915#3555]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg2-9: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#8813]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8708]) +11 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#5354]) +27 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/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][258] ([i915#8708]) +23 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1825]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][260] +17 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#5439]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-rkl: [PASS][262] -> [SKIP][263] ([i915#14544] / [i915#1849] / [i915#5354]) +6 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8708]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3023]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +13 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#8708]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#1825]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][269] +67 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#1849] / [i915#5354]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][271] ([i915#3458]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][272] ([i915#5354]) +10 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][273] +63 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3458]) +8 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12713]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#12713]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_hdr@static-toggle.html - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#12713] / [i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@bad-vsync-end: - shard-rkl: [PASS][283] -> [SKIP][284] ([i915#14544] / [i915#3555] / [i915#8826]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-end.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-9: NOTRUN -> [SKIP][285] ([i915#10656]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#12339]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#12394]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#12339]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: NOTRUN -> [INCOMPLETE][289] ([i915#13476]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2-9: NOTRUN -> [SKIP][290] ([i915#13705]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format: - shard-rkl: [PASS][291] -> [SKIP][292] ([i915#14544] / [i915#8825]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_plane@pixel-format.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane@pixel-format.html * igt@kms_plane@planar-pixel-format-settings: - shard-rkl: [PASS][293] -> [SKIP][294] ([i915#14544] / [i915#9581]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#14544] / [i915#7294]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-7efc.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][297] ([i915#12178]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][298] ([i915#7862]) +1 other test fail [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][299] ([i915#10647] / [i915#12169]) +1 other test fail [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][300] ([i915#10647]) +3 other tests fail [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64: - shard-rkl: NOTRUN -> [DMESG-WARN][301] ([i915#12964]) +6 other tests dmesg-warn [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#3555]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#8821]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-none: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#13958]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_plane_multiple@2x-tiling-none.html - shard-dg2: NOTRUN -> [SKIP][305] ([i915#13958]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-none.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#13958]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#13958]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#14259]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#14259]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu: [PASS][310] -> [SKIP][311] ([i915#6953]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12247]) +14 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#12247]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#14544]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-rkl: [PASS][316] -> [SKIP][317] ([i915#14544] / [i915#8152]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#12247] / [i915#14544]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#12247]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#12247]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-rkl: [PASS][322] -> [SKIP][323] ([i915#12247] / [i915#14544] / [i915#8152]) +6 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-rkl: [PASS][324] -> [SKIP][325] ([i915#14544] / [i915#6953] / [i915#8152]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#6953] / [i915#9423]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#3555] / [i915#6953]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12247]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9812]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9812]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#9685]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-15/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#3828]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9340]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][335] -> [SKIP][336] ([i915#9519]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-dg1: NOTRUN -> [DMESG-WARN][338] ([i915#4423]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9519]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#6524] / [i915#6805]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_prime@basic-crc-vgem.html * igt@kms_properties@crtc-properties-legacy: - shard-rkl: [PASS][342] -> [SKIP][343] ([i915#11521] / [i915#14544]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_properties@crtc-properties-legacy.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#9808]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][345] ([i915#11520]) +3 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#11520]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][347] ([i915#11520]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][348] ([i915#11520]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12316]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][351] ([i915#11520]) +11 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-glk11: NOTRUN -> [SKIP][352] ([i915#11520]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#11520]) +7 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +4 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#9683]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#4348]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][359] ([i915#9683]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#9683]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +4 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#9688]) +8 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +9 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#14544] / [i915#9732]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4077] / [i915#9688]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr2-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +21 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#9732]) +22 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +9 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#9732]) +15 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][370] +380 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#5289]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755] / [i915#5190]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][373] ([i915#5289]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#12755]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#12755]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic: - shard-snb: [PASS][376] -> [FAIL][377] ([i915#5465]) +2 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-snb2/igt@kms_setmode@basic.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb7/igt@kms_setmode@basic.html - shard-tglu-1: NOTRUN -> [FAIL][378] ([i915#5465]) +2 other tests fail [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_setmode@basic.html - shard-dg1: [PASS][379] -> [FAIL][380] ([i915#5465]) +2 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_setmode@basic.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][381] -> [FAIL][382] ([i915#5465]) +2 other tests fail [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2: - shard-rkl: [PASS][383] -> [FAIL][384] ([i915#5465]) +2 other tests fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-dg2: [PASS][385] -> [FAIL][386] ([i915#5465]) +2 other tests fail [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#3555] / [i915#8809] / [i915#8823]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#3555]) +7 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][389] ([i915#8623]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-9: NOTRUN -> [SKIP][390] ([i915#8623]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][391] ([i915#12276]) +1 other test incomplete [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@kms_vblank@ts-continuation-suspend.html - shard-rkl: [PASS][392] -> [INCOMPLETE][393] ([i915#12276]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][394] ([i915#12276]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html * igt@kms_vrr@max-min: - shard-dg2-9: NOTRUN -> [SKIP][395] ([i915#9906]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#3555] / [i915#9906]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3555] / [i915#9906]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][398] ([i915#3555] / [i915#9906]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][399] ([i915#3555] / [i915#9906]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][400] ([i915#9906]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][401] ([i915#9906]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][402] ([i915#9906]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][403] ([i915#9906]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][404] ([i915#8808] / [i915#9906]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#2437]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#2437] / [i915#9412]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][407] ([i915#2437]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [PASS][408] -> [FAIL][409] ([i915#4349]) +1 other test fail [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-1/igt@perf_pmu@busy-idle@bcs0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#8516]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#3708]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html - shard-rkl: [PASS][412] -> [SKIP][413] ([i915#14544] / [i915#3708]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@prime_vgem@basic-fence-flip.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2-9: NOTRUN -> [SKIP][414] ([i915#3291] / [i915#3708]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][415] ([i915#3708]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-5/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2-9: NOTRUN -> [SKIP][416] ([i915#9917]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@fbdev@pan: - shard-rkl: [SKIP][417] ([i915#14544] / [i915#2582]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@fbdev@pan.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@fbdev@pan.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: [TIMEOUT][419] ([i915#3778] / [i915#7016]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@gem_exec_endless@dispatch@vcs0.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_mmap_gtt@fault-concurrent: - shard-rkl: [DMESG-WARN][421] ([i915#12964]) -> [PASS][422] +33 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@gem_mmap_gtt@fault-concurrent.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [TIMEOUT][423] ([i915#12964]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@i915_module_load@load: - shard-dg2: ([PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [DMESG-WARN][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446]) ([i915#14559]) -> ([PASS][447], [PASS][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-7/igt@i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-7/igt@i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-7/igt@i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-8/igt@i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-8/igt@i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-5/igt@i915_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-5/igt@i915_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@i915_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@i915_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@i915_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@i915_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@i915_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-2/igt@i915_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-2/igt@i915_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_module_load@load.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_module_load@load.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@i915_module_load@load.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@i915_module_load@load.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@i915_module_load@load.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_module_load@load.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_module_load@load.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_module_load@load.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_module_load@load.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_module_load@load.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@i915_module_load@load.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@i915_module_load@load.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_module_load@load.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@i915_module_load@load.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@i915_module_load@load.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@i915_module_load@load.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@i915_module_load@load.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_module_load@load.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_module_load@load.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_module_load@load.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@i915_module_load@load.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@i915_module_load@load.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@i915_module_load@load.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@i915_module_load@load.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@i915_module_load@load.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@i915_module_load@load.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [INCOMPLETE][470] ([i915#12797]) -> [PASS][471] [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [DMESG-WARN][472] ([i915#14545]) -> [PASS][473] [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_suspend@basic-s3-without-i915.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_suspend@basic-s3-without-i915.html - shard-dg1: [DMESG-WARN][474] ([i915#14545]) -> [PASS][475] [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][476] ([i915#5956]) -> [PASS][477] +1 other test pass [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-rkl: [SKIP][478] ([i915#14544]) -> [PASS][479] +45 other tests pass [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-0.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_color@ctm-max: - shard-rkl: [SKIP][480] ([i915#12655] / [i915#14544]) -> [PASS][481] +1 other test pass [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_color@ctm-max.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_color@ctm-max.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][482] ([i915#13566]) -> [PASS][483] +3 other tests pass [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][484] ([i915#13566]) -> [PASS][485] [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-rkl: [SKIP][486] ([i915#11190] / [i915#14544]) -> [PASS][487] +2 other tests pass [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][488] ([i915#1257]) -> [PASS][489] [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@kms_dp_aux_dev.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#3637]) -> [PASS][491] +6 other tests pass [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#3555]) -> [PASS][493] +1 other test pass [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][495] +8 other tests pass [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [FAIL][496] ([i915#6880]) -> [PASS][497] [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_invalid_mode@zero-clock: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][499] +1 other test pass [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_invalid_mode@zero-clock.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_invalid_mode@zero-clock.html * igt@kms_plane@plane-position-hole-dpms: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#8825]) -> [PASS][501] +1 other test pass [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#7294]) -> [PASS][503] [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][505] [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#8152]) -> [PASS][507] [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - shard-rkl: [SKIP][508] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][509] +6 other tests pass [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: [SKIP][510] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][511] [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-rkl: [SKIP][512] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][513] [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a: - shard-rkl: [SKIP][514] ([i915#12247] / [i915#14544]) -> [PASS][515] +5 other tests pass [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][517] +1 other test pass [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][518] ([i915#12916] / [i915#14544]) -> [PASS][519] [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][520] ([i915#4423]) -> [PASS][521] +3 other tests pass [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-15/igt@kms_pm_rpm@i2c.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_pm_rpm@i2c.html - shard-dg2: [FAIL][522] ([i915#8717]) -> [PASS][523] [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-2/igt@kms_pm_rpm@i2c.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#9519]) -> [PASS][525] [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [SKIP][526] ([i915#11521] / [i915#14544]) -> [PASS][527] [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][528] ([i915#4349]) -> [PASS][529] [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html * igt@prime_busy@hang: - shard-rkl: [DMESG-WARN][530] ([i915#12917] / [i915#12964]) -> [PASS][531] +1 other test pass [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@prime_busy@hang.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@prime_busy@hang.html #### Warnings #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: [SKIP][532] ([i915#8411]) -> [SKIP][533] ([i915#14544] / [i915#8411]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][534] ([i915#11814] / [i915#11815]) -> [ABORT][535] ([i915#11814] / [i915#11815] / [i915#12817]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#7697]) -> [SKIP][537] ([i915#7697]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][538] ([i915#14544] / [i915#6335]) -> [SKIP][539] ([i915#6335]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][540] ([i915#6335]) -> [SKIP][541] ([i915#14544] / [i915#6335]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][542] ([i915#8562]) -> [SKIP][543] ([i915#14544] / [i915#8562]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@gem_create@create-ext-set-pat.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][544] ([i915#280]) -> [SKIP][545] ([i915#14544] / [i915#280]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@gem_ctx_sseu@engines.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][546] ([i915#4525]) -> [SKIP][547] ([i915#14544] / [i915#4525]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@gem_exec_balancer@parallel.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#4525]) -> [SKIP][549] ([i915#4525]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][550] -> [ABORT][551] ([i915#11713]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-5/igt@gem_exec_big@single.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: [SKIP][552] ([i915#6334]) -> [SKIP][553] ([i915#14544] / [i915#6334]) +1 other test skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@gem_exec_capture@capture-invisible.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#3281]) -> [SKIP][555] ([i915#3281]) +3 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read-noreloc.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: [SKIP][556] ([i915#3281]) -> [SKIP][557] ([i915#14544] / [i915#3281]) +5 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#4613]) -> [SKIP][559] ([i915#4613]) +1 other test skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][560] ([i915#4613]) -> [SKIP][561] ([i915#14544] / [i915#4613]) +2 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][562] ([i915#3282]) -> [SKIP][563] ([i915#14544] / [i915#3282]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@self: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#3282]) -> [SKIP][565] ([i915#3282]) +2 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_pread@self.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_pread@self.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: [TIMEOUT][566] ([i915#12917] / [i915#12964]) -> [SKIP][567] ([i915#4270]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_pxp@create-regular-context-2.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [SKIP][568] ([i915#14544] / [i915#4270]) -> [TIMEOUT][569] ([i915#12917] / [i915#12964]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_pxp@display-protected-crc.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [TIMEOUT][570] ([i915#12917] / [i915#12964]) -> [SKIP][571] ([i915#14544] / [i915#4270]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-2.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][572] ([i915#14544] / [i915#8411]) -> [SKIP][573] ([i915#8411]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#3297]) -> [SKIP][575] ([i915#3297]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_userptr_blits@access-control.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][576] ([i915#3297]) -> [SKIP][577] ([i915#14544] / [i915#3297]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][578] ([i915#2527]) -> [SKIP][579] ([i915#14544] / [i915#2527]) +3 other tests skip [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#2527]) -> [SKIP][581] ([i915#2527]) +2 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][582] ([i915#14544] / [i915#8399]) -> [SKIP][583] ([i915#8399]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][584] ([i915#8399]) -> [SKIP][585] ([i915#14544] / [i915#8399]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: [SKIP][586] ([i915#12454] / [i915#12712]) -> [SKIP][587] ([i915#12454] / [i915#12712] / [i915#14544]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][588] ([i915#14544]) -> [SKIP][589] ([i915#9531]) [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][590] ([i915#5286]) -> [SKIP][591] ([i915#14544]) +3 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][592] ([i915#14544]) -> [SKIP][593] ([i915#5286]) +2 other tests skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg1: [SKIP][594] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][595] ([i915#4538] / [i915#5286]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-15/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: [SKIP][596] ([i915#4538] / [i915#5286]) -> [SKIP][597] ([i915#4423] / [i915#4538] / [i915#5286]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][598] ([i915#14544]) -> [SKIP][599] ([i915#3638]) +1 other test skip [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: [SKIP][600] ([i915#3638] / [i915#4423]) -> [SKIP][601] ([i915#3638]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][602] ([i915#3638]) -> [SKIP][603] ([i915#14544]) +5 other tests skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: [SKIP][604] ([i915#4423] / [i915#4538]) -> [SKIP][605] ([i915#4538]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][606] -> [SKIP][607] ([i915#14544]) +10 other tests skip [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][608] ([i915#14544]) -> [SKIP][609] ([i915#12313]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][610] ([i915#14098] / [i915#6095]) -> [SKIP][611] ([i915#6095]) +4 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: [SKIP][612] ([i915#12313]) -> [SKIP][613] ([i915#14544]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][614] ([i915#14544]) -> [SKIP][615] ([i915#12805]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][616] ([i915#14098] / [i915#6095]) -> [SKIP][617] ([i915#14544]) +11 other tests skip [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg1: [SKIP][618] ([i915#6095]) -> [SKIP][619] ([i915#4423] / [i915#6095]) [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: [SKIP][620] ([i915#14544]) -> [SKIP][621] ([i915#14098] / [i915#6095]) +12 other tests skip [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][622] ([i915#6095]) -> [SKIP][623] ([i915#14098] / [i915#6095]) +2 other tests skip [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-2.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][624] ([i915#3742]) -> [SKIP][625] ([i915#14544] / [i915#3742]) [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_cdclk@mode-transition.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: [SKIP][626] ([i915#11151] / [i915#7828]) -> [SKIP][627] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][628] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][629] ([i915#11151] / [i915#7828]) +6 other tests skip [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-rkl: [SKIP][630] ([i915#7118] / [i915#9424]) -> [SKIP][631] ([i915#14544]) [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_content_protection@atomic.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][632] ([i915#3116]) -> [SKIP][633] ([i915#14544]) [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: [FAIL][634] ([i915#7173]) -> [SKIP][635] ([i915#7118] / [i915#9424]) [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@kms_content_protection@legacy.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-rkl: [SKIP][636] ([i915#9424]) -> [SKIP][637] ([i915#14544]) [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_content_protection@lic-type-0.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][638] ([i915#9433]) -> [SKIP][639] ([i915#9424]) [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-12/igt@kms_content_protection@mei-interface.html [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][640] ([i915#14544]) -> [SKIP][641] ([i915#7118] / [i915#9424]) [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_content_protection@type1.html [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][642] ([i915#14544]) -> [SKIP][643] ([i915#13049]) +2 other tests skip [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x128: - shard-rkl: [DMESG-WARN][644] ([i915#12964]) -> [SKIP][645] ([i915#14544]) [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x128.html [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cursor_crc@cursor-random-128x128.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [SKIP][646] ([i915#14544]) -> [FAIL][647] ([i915#13566]) [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][648] ([i915#14544]) -> [SKIP][649] ([i915#3555]) +4 other tests skip [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: [SKIP][650] ([i915#14544]) -> [SKIP][651] +15 other tests skip [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][652] ([i915#4103]) -> [SKIP][653] ([i915#14544]) [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][654] ([i915#13691]) -> [SKIP][655] ([i915#14544]) [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][656] ([i915#14544]) -> [SKIP][657] ([i915#13749]) [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][658] ([i915#13748]) -> [SKIP][659] ([i915#14544]) [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: [SKIP][660] ([i915#14544]) -> [SKIP][661] ([i915#3555] / [i915#3840]) [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][662] ([i915#3955]) -> [SKIP][663] ([i915#14544] / [i915#3955]) [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][664] ([i915#658]) -> [SKIP][665] ([i915#14544] / [i915#658]) [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_feature_discovery@psr1.html [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: [SKIP][666] ([i915#9934]) -> [SKIP][667] ([i915#14544] / [i915#9934]) +3 other tests skip [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-rkl: [SKIP][668] ([i915#14544] / [i915#9934]) -> [SKIP][669] ([i915#9934]) +4 other tests skip [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][670] ([i915#12964]) -> [SKIP][671] ([i915#14544] / [i915#3637]) [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@modeset-vs-vblank-race: - shard-rkl: [SKIP][672] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][673] ([i915#12964]) [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip@modeset-vs-vblank-race.html [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][674] ([i915#2672] / [i915#3555]) -> [SKIP][675] ([i915#14544] / [i915#3555]) [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][676] ([i915#14544] / [i915#3555]) -> [SKIP][677] ([i915#2672] / [i915#3555]) +3 other tests skip [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: [DMESG-WARN][678] ([i915#12964]) -> [SKIP][679] ([i915#14544] / [i915#1849] / [i915#5354]) +1 other test skip [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-rkl: [SKIP][680] ([i915#14544] / [i915#1849] / [i915#5354]) -> [DMESG-WARN][681] ([i915#12964]) [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][682] ([i915#1825]) -> [SKIP][683] ([i915#14544] / [i915#1849] / [i915#5354]) +26 other tests skip [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-rkl: [SKIP][684] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][685] ([i915#1825]) +16 other tests skip [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][686] ([i915#3458]) -> [SKIP][687] ([i915#10433] / [i915#3458]) +1 other test skip [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][688] ([i915#3023]) -> [SKIP][689] ([i915#14544] / [i915#1849] / [i915#5354]) +17 other tests skip [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][690] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][691] [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][692] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][693] ([i915#3023]) +23 other tests skip [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][694] ([i915#10433] / [i915#3458]) -> [SKIP][695] ([i915#3458]) +1 other test skip [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][696] ([i915#14544]) -> [SKIP][697] ([i915#1187] / [i915#12713]) [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: [SKIP][698] ([i915#12388]) -> [SKIP][699] ([i915#12388] / [i915#14544]) [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][700] ([i915#12394]) -> [SKIP][701] ([i915#12394] / [i915#14544]) [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][702] ([i915#12339] / [i915#14544]) -> [SKIP][703] ([i915#12339]) [702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][704] ([i915#6301]) -> [SKIP][705] ([i915#14544]) [704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html [705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-rkl: [SKIP][706] ([i915#12247]) -> [SKIP][707] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][708] ([i915#12247]) -> [SKIP][709] ([i915#12247] / [i915#14544]) [708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html [709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: [SKIP][710] ([i915#5354]) -> [SKIP][711] ([i915#14544] / [i915#5354]) [710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html [711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][712] ([i915#9685]) -> [SKIP][713] ([i915#14544] / [i915#9685]) +1 other test skip [712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html [713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][714] ([i915#14544] / [i915#3828]) -> [SKIP][715] ([i915#3828]) [714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html [715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][716] ([i915#3361]) -> [SKIP][717] ([i915#14544] / [i915#4281]) [716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html [717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][718] ([i915#14544] / [i915#9340]) -> [SKIP][719] ([i915#9340]) [718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html [719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][720] ([i915#9519]) -> [SKIP][721] ([i915#14544] / [i915#9519]) [720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][722] ([i915#11520] / [i915#14544]) -> [SKIP][723] ([i915#11520]) +2 other tests skip [722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg1: [SKIP][724] ([i915#11520]) -> [SKIP][725] ([i915#11520] / [i915#4423]) [724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][726] ([i915#11520]) -> [SKIP][727] ([i915#11520] / [i915#14544]) +4 other tests skip [726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][728] ([i915#9683]) -> [SKIP][729] ([i915#14544] / [i915#9683]) [728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html [729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][730] ([i915#1072] / [i915#9732]) -> [SKIP][731] ([i915#1072] / [i915#14544] / [i915#9732]) +16 other tests skip [730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html [731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: [SKIP][732] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][733] ([i915#1072] / [i915#9732]) +15 other tests skip [732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html [733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][734] ([i915#14544]) -> [SKIP][735] ([i915#5289]) [734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][736] ([i915#14544] / [i915#3555]) -> [SKIP][737] ([i915#3555]) +1 other test skip [736]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][738] ([i915#8623]) -> [SKIP][739] ([i915#14544]) [738]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][740] ([i915#9906]) -> [SKIP][741] ([i915#14544]) [740]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html [741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: [SKIP][742] ([i915#14544]) -> [SKIP][743] ([i915#9906]) [742]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html [743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: [SKIP][744] ([i915#14544] / [i915#2437]) -> [SKIP][745] ([i915#2437]) [744]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html [745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf_pmu@module-unload: - shard-rkl: [FAIL][746] ([i915#14433]) -> [DMESG-FAIL][747] ([i915#12964]) [746]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@perf_pmu@module-unload.html [747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@perf_pmu@module-unload.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][748] ([i915#14544] / [i915#3708]) -> [SKIP][749] ([i915#3708]) [748]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][750] ([i915#9917]) -> [SKIP][751] ([i915#14544] / [i915#9917]) [750]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html [751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html [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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [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#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [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#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14553 [i915#14559]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14559 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [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#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [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#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [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#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8449 -> IGTPW_13441 CI-20190529: 20190529 CI_DRM_16837: 7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13441: 25092973d9af46bf06598684bb9a077eec0b3f65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8449: bfa2e7bb44a2e0fe43d2ae474db0dff766080b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/index.html [-- Attachment #2: Type: text/html, Size: 239990 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: ✗ i915.CI.Full: failure for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) 2025-07-10 10:43 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-07-10 13:55 ` Thomas, Sobin 0 siblings, 0 replies; 8+ messages in thread From: Thomas, Sobin @ 2025-07-10 13:55 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org Cc: I915-ci-infra@lists.freedesktop.org, Konieczny, Kamil [-- Attachment #1: Type: text/plain, Size: 201655 bytes --] Hi All, ********************* State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/index.html ********************* CI Bug Log - changes from IGT_8449_full -> IGTPW_13441_full Summary FAILURE Serious unknown changes coming with IGTPW_13441_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13441_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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_13441/index.html Participating hosts (11 -> 11) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in IGTPW_13441_full: IGT changes Possible regressions • igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2: o shard-rkl: NOTRUN -> INCOMPLETE New tests New tests have been introduced between IGT_8449_full and IGTPW_13441_full: New IGT tests (1) • igt@kms_rmfb@close-fd@pipe-b-hdmi-a-2: o Statuses : 1 pass(s) o Exec time: [0.19] s Verdict: This failure is not related to the patch Regards Sobin Thomas From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Thursday, July 10, 2025 4:13 PM To: Thomas, Sobin <sobin.thomas@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ i915.CI.Full: failure for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) Patch Details Series: tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) URL: https://patchwork.freedesktop.org/series/151334/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/index.html CI Bug Log - changes from IGT_8449_full -> IGTPW_13441_full Summary FAILURE Serious unknown changes coming with IGTPW_13441_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13441_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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_13441/index.html Participating hosts (11 -> 11) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in IGTPW_13441_full: IGT changes Possible regressions * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2: * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html> New tests New tests have been introduced between IGT_8449_full and IGTPW_13441_full: New IGT tests (1) * igt@kms_rmfb@close-fd@pipe-b-hdmi-a-2: * Statuses : 1 pass(s) * Exec time: [0.19] s Known issues Here are the changes found in IGTPW_13441_full that come from known issues: IGT changes Issues hit * igt@api_intel_bb@crc32: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) * igt@device_reset@unbind-cold-reset-rebind: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@device_reset@unbind-reset-rebind: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@device_reset@unbind-reset-rebind.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html> (i915#5507<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507>) * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@device_reset@unbind-reset-rebind.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html> (i915#5507<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507>) * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-10/igt@device_reset@unbind-reset-rebind.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html> (i915#12817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817> / i915#5507<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507>) * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-glk6/igt@device_reset@unbind-reset-rebind.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk8/igt@device_reset@unbind-reset-rebind.html> (i915#5507<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507>) * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-3/igt@device_reset@unbind-reset-rebind.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-2/igt@device_reset@unbind-reset-rebind.html> (i915#12817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817> / i915#5507<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507>) * igt@gem_basic@multigpu-create-close: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) +1 other test skip * igt@gem_caching@reads: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@gem_caching@reads.html> (i915#4873<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873>) * igt@gem_ccs@ctrl-surf-copy: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_ccs@ctrl-surf-copy-new-ctx: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_ccs@suspend-resume: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-8/igt@gem_ccs@suspend-resume.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@gem_ccs@suspend-resume.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) +1 other test incomplete * igt@gem_close_race@multigpu-basic-process: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * igt@gem_create@create-ext-set-pat: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) * igt@gem_ctx_persistence@engines-cleanup: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb1/igt@gem_ctx_persistence@engines-cleanup.html> (i915#1099<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) * igt@gem_ctx_persistence@hang: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gem_ctx_persistence@hang.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) * igt@gem_ctx_persistence@saturated-hostile-nopreempt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html> (i915#5882<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882>) +7 other tests skip * igt@gem_ctx_sseu@invalid-args: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-glk11: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk11/igt@gem_eio@in-flight-suspend.html> (i915#13390<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390>) * igt@gem_exec_balancer@bonded-pair: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@gem_exec_balancer@bonded-pair.html> (i915#4771<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) * igt@gem_exec_balancer@bonded-true-hang: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_balancer@bonded-true-hang.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip * igt@gem_exec_balancer@parallel-keep-in-fence: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) * igt@gem_exec_capture@capture-invisible@smem0: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip * igt@gem_exec_flush@basic-batch-kernel-default-uc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +2 other tests skip * igt@gem_exec_flush@basic-uc-pro-default: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +2 other tests skip * igt@gem_exec_params@secure-non-root: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_params@secure-non-root.html> +6 other tests skip * igt@gem_exec_reloc@basic-concurrent0: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_exec_reloc@basic-concurrent0.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) * igt@gem_exec_reloc@basic-gtt-noreloc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +11 other tests skip * igt@gem_exec_reloc@basic-gtt-wc-active: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-wc-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +2 other tests skip * igt@gem_exec_reloc@basic-wc-read: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip * igt@gem_exec_reloc@basic-write-cpu-active: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu-active.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) * igt@gem_exec_schedule@semaphore-power: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@gem_exec_schedule@semaphore-power.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip * igt@gem_fence_thrash@bo-write-verify-threaded-none: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) * igt@gem_lmem_swapping@heavy-verify-multi-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip * igt@gem_lmem_swapping@heavy-verify-random-ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#12193<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html> (i915#4565<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) * igt@gem_lmem_swapping@random: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@gem_lmem_swapping@random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * igt@gem_lmem_swapping@smem-oom@lmem0: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) +1 other test timeout * igt@gem_lmem_swapping@verify-random-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_media_vme: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gem_media_vme.html> (i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>) * igt@gem_mmap@bad-object: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_mmap@bad-object.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip * igt@gem_mmap_gtt@basic-read: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@gem_mmap_gtt@basic-read.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +6 other tests skip * igt@gem_mmap_gtt@basic-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@gem_mmap_gtt@basic-wc.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +3 other tests skip * igt@gem_mmap_gtt@fault-concurrent-y: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-y.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +4 other tests skip * igt@gem_mmap_wc@coherency: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@gem_mmap_wc@coherency.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +4 other tests skip * igt@gem_mmap_wc@copy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@gem_mmap_wc@copy.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +3 other tests skip * igt@gem_mmap_wc@fault-concurrent: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_mmap_wc@fault-concurrent.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip * igt@gem_partial_pwrite_pread@reads-display: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_partial_pwrite_pread@write: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@gem_partial_pwrite_pread@write.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_partial_pwrite_pread@write-uncached: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_partial_pwrite_pread@write-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_pwrite@basic-exhaustion: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * shard-snb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb7/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) * shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) * igt@gem_pxp@create-regular-context-1: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip * igt@gem_pxp@display-protected-crc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@gem_pxp@display-protected-crc.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other tests skip * igt@gem_pxp@reject-modify-context-protection-off-1: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +1 other test timeout * igt@gem_pxp@reject-modify-context-protection-on: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-on.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_render_copy@y-tiled-ccs-to-linear: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-linear.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +6 other tests skip * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +1 other test skip * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +1 other test skip * igt@gem_render_tiled_blits@basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@gem_render_tiled_blits@basic.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) * igt@gem_set_tiling_vs_blt@tiled-to-tiled: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +1 other test skip * igt@gem_set_tiling_vs_blt@untiled-to-tiled: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) * igt@gem_tiling_max_stride: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gem_tiling_max_stride.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +4 other tests skip * igt@gem_userptr_blits@map-fixed-invalidate-busy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) * igt@gem_userptr_blits@unsync-unmap: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * igt@gen3_render_tiledx_blits: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@gen3_render_tiledx_blits.html> +10 other tests skip * igt@gen9_exec_parse@allowed-single: * shard-glk: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566>) * igt@gen9_exec_parse@bb-large: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@gen9_exec_parse@bb-large.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * igt@gen9_exec_parse@bb-oversize: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) * igt@gen9_exec_parse@bb-secure: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +3 other tests skip * igt@gen9_exec_parse@unaligned-access: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gen9_exec_parse@unaligned-access.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +3 other tests skip * igt@gen9_exec_parse@valid-registers: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@gen9_exec_parse@valid-registers.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) * igt@i915_drm_fdinfo@all-busy-idle-check-all: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_drm_fdinfo@all-busy-idle-check-all.html> (i915#14123<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@i915_drm_fdinfo@all-busy-idle-check-all.html> (i915#14123<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@i915_drm_fdinfo@all-busy-idle-check-all.html> (i915#14123<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123>) * igt@i915_drm_fdinfo@busy@vecs1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_drm_fdinfo@busy@vecs1.html> (i915#14073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) +7 other tests skip * igt@i915_fb_tiling@basic-x-tiling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_fb_tiling@basic-x-tiling.html> (i915#13786<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786>) * igt@i915_pm_freq_api@freq-reset-multiple: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip * igt@i915_pm_freq_api@freq-suspend@gt0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html> (i915#12455<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455> / i915#13820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820>) +1 other test incomplete * igt@i915_pm_rps@min-max-config-idle: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) * igt@i915_pm_rps@thresholds-idle: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) * igt@i915_pm_rps@thresholds-park: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) * igt@i915_query@test-query-geometry-subslices: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) * igt@i915_suspend@debugfs-reader: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@i915_suspend@debugfs-reader.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@i915_suspend@debugfs-reader.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) +1 other test incomplete * igt@intel_hwmon@hwmon-read: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-5/igt@intel_hwmon@hwmon-read.html> (i915#7707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) * igt@intel_hwmon@hwmon-write: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@intel_hwmon@hwmon-write.html> (i915#7707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) +1 other test skip * igt@kms_addfb_basic@basic-y-tiled-legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html> (i915#4215<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_async_flips@alternate-sync-async-flip: * shard-glk11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk11/igt@kms_async_flips@alternate-sync-async-flip.html> +37 other tests skip * igt@kms_async_flips@crc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_async_flips@crc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +5 other tests skip * igt@kms_async_flips@invalid-async-flip: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html> (i915#12967<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967> / i915#6228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228>) * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) * igt@kms_atomic_transition@plane-all-modeset-transition: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_big_fb@4-tiled-64bpp-rotate-90: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other test skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) * igt@kms_big_fb@4-tiled-addfb: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +5 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +7 other tests skip * igt@kms_big_fb@y-tiled-64bpp-rotate-270: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip * igt@kms_big_fb@y-tiled-addfb: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-16/igt@kms_big_fb@y-tiled-addfb.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_big_fb@y-tiled-addfb.html> (i915#4391<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +3 other tests skip * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +9 other tests skip * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> +11 other tests skip * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (i915#6187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip * igt@kms_busy@basic: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_busy@basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_busy@basic.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +101 other tests skip * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +29 other tests skip * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +29 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3.html> (i915#12796<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>) +1 other test incomplete * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +45 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +121 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +49 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +44 other tests skip * igt@kms_chamelium_audio@hdmi-audio: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_chamelium_audio@hdmi-audio.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip * igt@kms_chamelium_color@ctm-0-25: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_chamelium_color@ctm-0-25.html> * igt@kms_chamelium_color@ctm-0-50: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_chamelium_color@ctm-0-50.html> +47 other tests skip * igt@kms_chamelium_edid@dp-edid-change-during-suspend: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip * igt@kms_chamelium_edid@hdmi-edid-read: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_chamelium_edid@hdmi-edid-read.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip * igt@kms_chamelium_hpd@dp-hpd-storm-disable: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) * igt@kms_chamelium_hpd@vga-hpd-after-suspend: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip * igt@kms_chamelium_hpd@vga-hpd-without-ddc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) * igt@kms_color@ctm-negative: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_color@ctm-negative.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_color@ctm-negative.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_color@deep-color: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_color@deep-color.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_content_protection@atomic-dpms: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@dp-mst-lic-type-0: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116> / i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) * igt@kms_content_protection@lic-type-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_content_protection@lic-type-1.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@mei-interface: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_content_protection@mei-interface.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@srm: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_content_protection@srm.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) * igt@kms_content_protection@type1: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_content_protection@type1.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_cursor_crc@cursor-offscreen-256x85: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +44 other tests skip * igt@kms_cursor_crc@cursor-offscreen-512x170: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_crc@cursor-offscreen-512x512: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_crc@cursor-onscreen-256x85: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#8814<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) * igt@kms_cursor_crc@cursor-onscreen-32x32: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8814<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) +1 other test skip * igt@kms_cursor_crc@cursor-random-32x32: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +6 other tests skip * igt@kms_cursor_crc@cursor-random-512x170: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other test fail * igt@kms_cursor_crc@cursor-sliding-256x85: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +5 other tests fail * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +2 other tests dmesg-warn * igt@kms_cursor_edge_walk@64x64-left-edge: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_cursor_edge_walk@64x64-left-edge.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_cursor_edge_walk@64x64-left-edge.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +20 other tests dmesg-warn * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-glk6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +2 other tests skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +3 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (i915#9809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>) +2 other tests skip * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) +1 other test fail * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9833<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) * igt@kms_dither@fb-8bpc-vs-panel-8bpc: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_dp_link_training@non-uhbr-sst: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) * igt@kms_dp_link_training@uhbr-sst: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) * igt@kms_dp_linktrain_fallback@dp-fallback: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) * igt@kms_dp_linktrain_fallback@dsc-fallback: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) * igt@kms_draw_crc@draw-method-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html> (i915#8812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812>) * igt@kms_dsc@dsc-with-output-formats: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-with-output-formats-with-bpc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> / i915#9053<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>) * igt@kms_fbcon_fbt@fbc-suspend: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#14561<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561>) * igt@kms_feature_discovery@dp-mst: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html> (i915#9337<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>) * igt@kms_feature_discovery@psr2: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) * igt@kms_flip@2x-absolute-wf_vblank: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +5 other tests skip * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) * igt@kms_flip@2x-flip-vs-fences: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_flip@2x-flip-vs-fences.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +7 other tests skip * igt@kms_flip@2x-flip-vs-fences-interruptible: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) * igt@kms_flip@2x-flip-vs-panning-interruptible: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +6 other tests skip * igt@kms_flip@2x-plain-flip: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@kms_flip@2x-plain-flip.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@2x-plain-flip-interruptible: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip@2x-plain-flip-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +1 other test skip * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@flip-vs-dpms-on-nop: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_flip@flip-vs-dpms-on-nop.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#14553<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14553>) * igt@kms_flip@flip-vs-panning-interruptible: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_flip@flip-vs-panning-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +8 other tests skip * igt@kms_flip@flip-vs-suspend-interruptible: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible.html> (i915#12314<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> / i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) +1 other test incomplete * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) +5 other tests dmesg-warn * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +5 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +6 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8813<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) +4 other tests skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#8813<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +4 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +11 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +27 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +23 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +10 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> +17 other tests skip * igt@kms_frontbuffer_tracking@fbc-tiling-4: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> (i915#5439<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) * igt@kms_frontbuffer_tracking@fbc-tiling-linear: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +6 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +5 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +13 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +7 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +5 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> +67 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +1 other test skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +5 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +10 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html> +63 other tests skip * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +8 other tests skip * igt@kms_hdr@brightness-with-hdr: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * igt@kms_hdr@static-swap: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_hdr@static-swap.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * igt@kms_hdr@static-toggle: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_hdr@static-toggle.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * igt@kms_invalid_mode@bad-vsync-end: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-end.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>) * igt@kms_joiner@basic-force-ultra-joiner: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) * igt@kms_joiner@basic-ultra-joiner: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>) * igt@kms_joiner@invalid-modeset-force-ultra-joiner: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) * igt@kms_joiner@invalid-modeset-ultra-joiner: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>) * igt@kms_pipe_crc_basic@suspend-read-crc: * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html> (i915#13476<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>) * igt@kms_pipe_stress@stress-xrgb8888-ytiled: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html> (i915#13705<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705>) * igt@kms_plane@pixel-format: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_plane@pixel-format.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane@pixel-format.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) +1 other test skip * igt@kms_plane@planar-pixel-format-settings: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9581<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581>) * igt@kms_plane_alpha_blend@alpha-7efc: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-7efc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7294<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294>) * igt@kms_plane_alpha_blend@alpha-basic: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html> (i915#12178<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178>) * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html> (i915#7862<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862>) +1 other test fail * igt@kms_plane_alpha_blend@alpha-opaque-fb: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> / i915#12169<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) +1 other test fail * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) +3 other tests fail * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64: * shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-1-size-64.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +6 other tests dmesg-warn * igt@kms_plane_lowres@tiling-4: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * igt@kms_plane_lowres@tiling-y: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html> (i915#8821<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821>) * igt@kms_plane_multiple@2x-tiling-none: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) * igt@kms_plane_multiple@2x-tiling-x: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-x.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) +1 other test skip * igt@kms_plane_multiple@tiling-4: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_plane_multiple@tiling-4.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) * igt@kms_plane_scaling@intel-max-src-size: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +14 other tests skip * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +4 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +1 other test skip * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +4 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +1 other test skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +4 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +6 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +1 other test skip * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +3 other tests skip * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +3 other tests skip * igt@kms_pm_backlight@basic-brightness: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html> (i915#9812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) * igt@kms_pm_backlight@fade-with-dpms: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html> (i915#9812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) +1 other test skip * igt@kms_pm_dc@dc3co-vpb-simulation: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-15/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_dc@dc5-retention-flops: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-8/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_pm_lpsp@kms-lpsp: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +2 other tests skip * igt@kms_pm_rpm@modeset-non-lpsp-stress: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip * igt@kms_prime@basic-crc-vgem: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_prime@basic-crc-vgem.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) +1 other test skip * igt@kms_properties@crtc-properties-legacy: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_properties@crtc-properties-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html> (i915#11521<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html> (i915#9808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>) +1 other test skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html> (i915#12316<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) +5 other tests skip * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +11 other tests skip * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: * shard-glk11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +7 other tests skip * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr2_su@page_flip-nv12: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html> (i915#4348<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr2_su@page_flip-xrgb8888: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) +1 other test skip * igt@kms_psr@fbc-pr-sprite-plane-onoff: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +4 other tests skip * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html> (i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +8 other tests skip * igt@kms_psr@pr-cursor-mmap-gtt: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip * igt@kms_psr@pr-sprite-plane-onoff: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr@pr-sprite-plane-onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) * igt@kms_psr@psr-primary-mmap-gtt@edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077> / i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +1 other test skip * igt@kms_psr@psr2-cursor-plane-move: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +21 other tests skip * igt@kms_psr@psr2-cursor-plane-onoff: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +22 other tests skip * igt@kms_psr@psr2-primary-mmap-gtt: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip * igt@kms_psr@psr2-sprite-mmap-gtt: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other tests skip * igt@kms_psr@psr2-sprite-plane-onoff: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html> +380 other tests skip * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@sprite-rotation-270: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-270.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) +1 other test skip * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) +3 other tests skip * igt@kms_setmode@basic: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-snb2/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-snb7/igt@kms_setmode@basic.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-1/igt@kms_setmode@basic.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_setmode@basic.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * igt@kms_setmode@basic@pipe-b-edp-1: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * igt@kms_setmode@basic@pipe-b-hdmi-a-2: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * igt@kms_setmode@basic@pipe-b-hdmi-a-3: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html> (i915#5465<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +2 other tests fail * igt@kms_setmode@invalid-clone-exclusive-crtc: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809> / i915#8823<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823>) * igt@kms_setmode@invalid-clone-single-crtc-stealing: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +7 other tests skip * igt@kms_tiled_display@basic-test-pattern: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) * igt@kms_vblank@ts-continuation-suspend: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk2/igt@kms_vblank@ts-continuation-suspend.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) +1 other test incomplete * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2: * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) * igt@kms_vrr@max-min: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@kms_vrr@max-min.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_vrr@negative-basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-2/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_vrr@seamless-rr-switch-virtual: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * igt@kms_vrr@seamless-rr-switch-vrr: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_writeback@writeback-fb-id: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@kms_writeback@writeback-fb-id-xrgb2101010: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) * igt@kms_writeback@writeback-pixel-formats: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@perf_pmu@busy-idle@bcs0: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-1/igt@perf_pmu@busy-idle@bcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-8/igt@perf_pmu@busy-idle@bcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) +1 other test fail * igt@perf_pmu@rc6@other-idle-gt0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) * igt@prime_vgem@basic-fence-flip: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@prime_vgem@basic-fence-flip.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@prime_vgem@basic-fence-read: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@prime_vgem@basic-fence-read.html> (i915#3291<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-5/igt@prime_vgem@basic-fence-read.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@sriov_basic@enable-vfs-autoprobe-on: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-on.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) Possible fixes * igt@fbdev@pan: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@fbdev@pan.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@fbdev@pan.html> +1 other test pass * igt@gem_exec_endless@dispatch@vcs0: * shard-dg2: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@gem_exec_endless@dispatch@vcs0.html> (i915#3778<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778> / i915#7016<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@gem_exec_endless@dispatch@vcs0.html> +1 other test pass * igt@gem_mmap_gtt@fault-concurrent: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@gem_mmap_gtt@fault-concurrent.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@gem_mmap_gtt@fault-concurrent.html> +33 other tests pass * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> +1 other test pass * igt@i915_module_load@load: * shard-dg2: (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@i915_module_load@load.html>, DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@i915_module_load@load.html>) (i915#14559<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14559>) -> (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-2/igt@i915_module_load@load.html>) * igt@i915_pm_rpm@system-suspend-execbuf: * shard-rkl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html> (i915#12797<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_suspend@basic-s3-without-i915: * shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-6/igt@i915_suspend@basic-s3-without-i915.html> (i915#14545<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@i915_suspend@basic-s3-without-i915.html> * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html> (i915#14545<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html> * igt@kms_atomic_transition@plane-toggle-modeset-transition: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> +1 other test pass * igt@kms_big_fb@linear-32bpp-rotate-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-0.html> +45 other tests pass * igt@kms_color@ctm-max: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_color@ctm-max.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_color@ctm-max.html> +1 other test pass * igt@kms_cursor_crc@cursor-onscreen-256x85: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html> +3 other tests pass * igt@kms_cursor_crc@cursor-onscreen-64x21: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html> * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> +2 other tests pass * igt@kms_dp_aux_dev: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-11/igt@kms_dp_aux_dev.html> * igt@kms_flip@flip-vs-suspend: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html> +6 other tests pass * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html> +1 other test pass * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> +8 other tests pass * igt@kms_frontbuffer_tracking@fbc-tiling-linear: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> * igt@kms_invalid_mode@zero-clock: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_invalid_mode@zero-clock.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_invalid_mode@zero-clock.html> +1 other test pass * igt@kms_plane@plane-position-hole-dpms: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_plane@plane-position-hole-dpms.html> +1 other test pass * igt@kms_plane_alpha_blend@alpha-basic: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7294<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_plane_alpha_blend@alpha-basic.html> * igt@kms_plane_scaling@invalid-num-scalers: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_plane_scaling@invalid-num-scalers.html> * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html> +6 other tests pass * igt@kms_plane_scaling@planes-downscale-factor-0-5: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5.html> * igt@kms_plane_scaling@planes-downscale-factor-0-75: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html> * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a.html> +5 other tests pass * igt@kms_plane_scaling@planes-scaler-unity-scaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> +1 other test pass * igt@kms_pm_rpm@dpms-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html> (i915#12916<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html> * igt@kms_pm_rpm@i2c: * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-15/igt@kms_pm_rpm@i2c.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_pm_rpm@i2c.html> +3 other tests pass * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-2/igt@kms_pm_rpm@i2c.html> (i915#8717<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_pm_rpm@i2c.html> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> * igt@kms_properties@plane-properties-atomic: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html> (i915#11521<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html> * igt@perf_pmu@busy-double-start@bcs0: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html> * igt@prime_busy@hang: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@prime_busy@hang.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@prime_busy@hang.html> +1 other test pass Warnings * igt@api_intel_bb@object-reloc-purge-cache: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@device_reset@unbind-reset-rebind: * shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html> (i915#11814<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814> / i915#11815<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815>) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html> (i915#11814<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814> / i915#11815<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815> / i915#12817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817>) * igt@gem_close_race@multigpu-basic-process: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * igt@gem_create@create-ext-cpu-access-big: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) * igt@gem_create@create-ext-cpu-access-sanity-check: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) * igt@gem_create@create-ext-set-pat: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_create@create-ext-set-pat.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) * igt@gem_ctx_sseu@engines: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@gem_ctx_sseu@engines.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_ctx_sseu@engines.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_exec_balancer@parallel: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@gem_exec_balancer@parallel.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_balancer@parallel.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) * igt@gem_exec_balancer@parallel-balancer: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) * igt@gem_exec_big@single: * shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-tglu-5/igt@gem_exec_big@single.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-tglu-6/igt@gem_exec_big@single.html> (i915#11713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) * igt@gem_exec_capture@capture-invisible: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@gem_exec_capture@capture-invisible.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip * igt@gem_exec_reloc@basic-cpu-read-noreloc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read-noreloc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +3 other tests skip * igt@gem_exec_reloc@basic-gtt-read-noreloc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip * igt@gem_lmem_swapping@heavy-verify-random: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_lmem_swapping@parallel-random-verify: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip * igt@gem_partial_pwrite_pread@reads-uncached: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_pread@self: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_pread@self.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_pread@self.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +2 other tests skip * igt@gem_pxp@create-regular-context-2: * shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_pxp@create-regular-context-2.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@gem_pxp@create-regular-context-2.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_pxp@display-protected-crc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_pxp@display-protected-crc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_pxp@display-protected-crc.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@gem_pxp@reject-modify-context-protection-off-2: * shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_set_tiling_vs_blt@tiled-to-tiled: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@gem_userptr_blits@access-control: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gem_userptr_blits@access-control.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@unsync-unmap-cycles: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gen9_exec_parse@bb-oversize: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +3 other tests skip * igt@gen9_exec_parse@valid-registers: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +2 other tests skip * igt@i915_pm_freq_api@freq-reset-multiple: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) * igt@i915_pm_freq_api@freq-suspend: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) * igt@kms_big_fb@4-tiled-16bpp-rotate-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +3 other tests skip * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip * igt@kms_big_fb@4-tiled-64bpp-rotate-180: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-15/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) * igt@kms_big_fb@linear-64bpp-rotate-90: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip * igt@kms_big_fb@x-tiled-16bpp-rotate-90: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) * igt@kms_big_fb@y-tiled-8bpp-rotate-270: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +5 other tests skip * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +10 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +4 other tests skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +11 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +12 other tests skip * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-2: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other tests skip * igt@kms_cdclk@mode-transition: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_cdclk@mode-transition.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cdclk@mode-transition.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) * igt@kms_chamelium_hpd@dp-hpd: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip * igt@kms_chamelium_hpd@vga-hpd-fast: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip * igt@kms_content_protection@atomic: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_content_protection@atomic.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_content_protection@atomic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_content_protection@dp-mst-type-1: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_content_protection@legacy: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-11/igt@kms_content_protection@legacy.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_content_protection@legacy.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@lic-type-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_content_protection@lic-type-0.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_content_protection@lic-type-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_content_protection@mei-interface: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-12/igt@kms_content_protection@mei-interface.html> (i915#9433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-19/igt@kms_content_protection@mei-interface.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@type1: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_content_protection@type1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_cursor_crc@cursor-offscreen-512x512: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +2 other tests skip * igt@kms_cursor_crc@cursor-random-128x128: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x128.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cursor_crc@cursor-random-128x128.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_cursor_crc@cursor-sliding-128x42: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) * igt@kms_cursor_crc@cursor-sliding-32x10: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> +15 other tests skip * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_display_modes@extended-mode-basic: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html> (i915#13691<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dp_link_training@non-uhbr-mst: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) * igt@kms_dp_link_training@uhbr-mst: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dsc@dsc-with-bpc-formats: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_fbcon_fbt@psr-suspend: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) * igt@kms_feature_discovery@psr1: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_feature_discovery@psr1.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_feature_discovery@psr1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) * igt@kms_flip@2x-flip-vs-fences-interruptible: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@2x-wf_vblank-ts-check: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip * igt@kms_flip@blocking-absolute-wf_vblank-interruptible: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-2/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) * igt@kms_flip@modeset-vs-vblank-race: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip@modeset-vs-vblank-race.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_flip@modeset-vs-vblank-race.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +1 other test skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +26 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-rte: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +16 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +17 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +23 other tests skip * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip * igt@kms_hdr@brightness-with-hdr: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html> (i915#1187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> / i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * igt@kms_joiner@basic-force-big-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_joiner@basic-force-ultra-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_joiner@basic-ultra-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-8/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>) * igt@kms_panel_fitting@atomic-fastset: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +1 other test skip * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_pm_backlight@fade-with-suspend: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) * igt@kms_pm_dc@dc5-psr: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) +1 other test skip * igt@kms_pm_dc@dc5-retention-flops: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_pm_dc@dc9-dpms: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>) * igt@kms_pm_lpsp@kms-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) * igt@kms_pm_rpm@modeset-lpsp-stress: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +4 other tests skip * igt@kms_psr2_su@page_flip-xrgb8888: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr@fbc-psr2-sprite-render: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +16 other tests skip * igt@kms_psr@psr2-cursor-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other tests skip * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_setmode@invalid-clone-exclusive-crtc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_vrr@seamless-rr-switch-drrs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_vrr@seamless-rr-switch-virtual: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_writeback@writeback-invalid-parameters: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@perf_pmu@module-unload: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-7/igt@perf_pmu@module-unload.html> (i915#14433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-7/igt@perf_pmu@module-unload.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@prime_vgem@fence-write-hang: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-6/igt@prime_vgem@fence-write-hang.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-3/igt@prime_vgem@fence-write-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@sriov_basic@enable-vfs-bind-unbind-each: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8449/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13441/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) Build changes * CI: CI-20190529 -> None * IGT: IGT_8449 -> IGTPW_13441 CI-20190529: 20190529 CI_DRM_16837: 7c6cc6e59baa15cc1b10fe5bba36219ae6d227b0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13441: 25092973d9af46bf06598684bb9a077eec0b3f65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8449: bfa2e7bb44a2e0fe43d2ae474db0dff766080b24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 336247 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-07-10 13:55 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-10 4:48 [PATCH v2 i-g-t 0/1] tests/intel/xe_copy : Add check for memset and memcpy tests Sobin Thomas 2025-07-10 4:48 ` [PATCH v2 i-g-t 1/1] " Sobin Thomas 2025-07-10 11:50 ` Zbigniew Kempczyński 2025-07-10 7:45 ` ✓ i915.CI.BAT: success for tests/intel/xe_copy : Add check for memset and memcpy tests. (rev2) Patchwork 2025-07-10 8:01 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-10 8:59 ` ✓ Xe.CI.Full: " Patchwork 2025-07-10 10:43 ` ✗ i915.CI.Full: failure " Patchwork 2025-07-10 13:55 ` Thomas, Sobin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox