* [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure
@ 2024-11-28 6:35 Pranay Samala
2024-11-28 7:29 ` B, Jeevan
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Pranay Samala @ 2024-11-28 6:35 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, jeevan.b, sameer.lattannavar, pranay.samala
Having some logs for test failures and skips would
make debugging much easier.
v2: Remove the extra logging statements (Jeevan)
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_plane.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 77a669dc5..b9bf025bd 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -293,8 +293,11 @@ test_plane_position_with_output(data_t *data,
create_fb_for_mode(data, mode, &green, &rect, 1, &primary_fb);
igt_plane_set_fb(primary, &primary_fb);
- if (!igt_plane_has_format_mod(sprite, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR))
+ if (!igt_plane_has_format_mod(sprite, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR)) {
+ igt_info("plane-%d does not supports XRGB format and Linear modifier\n",
+ sprite->index);
return;
+ }
igt_create_color_fb(data->drm_fd,
64, 64, /* width, height */
@@ -493,7 +496,7 @@ test_plane_panning(data_t *data, enum pipe pipe)
mode_found = true;
break;
}
- igt_require(mode_found);
+ igt_require_f(mode_found, "All connector modes are skipped due to low memory\n");
if (data->flags & TEST_PANNING_TOP_LEFT)
test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
@@ -1263,7 +1266,7 @@ static void test_planar_settings(data_t *data)
* If here is added non-intel tests below require will need to be
* changed to if(..)
*/
- igt_require(data->display.is_atomic);
+ igt_require_f(data->display.is_atomic, "Atomic mode-set not supported\n");
igt_require_intel(data->drm_fd);
devid = intel_get_drm_devid(data->drm_fd);
igt_require(intel_display_ver(devid) >= 9);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* RE: [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure 2024-11-28 6:35 [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure Pranay Samala @ 2024-11-28 7:29 ` B, Jeevan 2024-11-28 7:51 ` ✓ Xe.CI.BAT: success for tests/kms_plane:Add more logs to skips/failure (rev2) Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: B, Jeevan @ 2024-11-28 7:29 UTC (permalink / raw) To: Samala, Pranay, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Lattannavar, Sameer > -----Original Message----- > From: Samala, Pranay <pranay.samala@intel.com> > Sent: Thursday, November 28, 2024 12:06 PM > To: igt-dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan <jeevan.b@intel.com>; > Lattannavar, Sameer <sameer.lattannavar@intel.com>; Samala, Pranay > <pranay.samala@intel.com> > Subject: [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure > > Having some logs for test failures and skips would make debugging much easier. > > v2: Remove the extra logging statements (Jeevan) > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> LGTM Reviewed-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_plane.c | 9 ++++++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 77a669dc5..b9bf025bd > 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -293,8 +293,11 @@ test_plane_position_with_output(data_t *data, > create_fb_for_mode(data, mode, &green, &rect, 1, &primary_fb); > igt_plane_set_fb(primary, &primary_fb); > > - if (!igt_plane_has_format_mod(sprite, DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR)) > + if (!igt_plane_has_format_mod(sprite, DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR)) { > + igt_info("plane-%d does not supports XRGB format and Linear > modifier\n", > + sprite->index); > return; > + } > > igt_create_color_fb(data->drm_fd, > 64, 64, /* width, height */ > @@ -493,7 +496,7 @@ test_plane_panning(data_t *data, enum pipe pipe) > mode_found = true; > break; > } > - igt_require(mode_found); > + igt_require_f(mode_found, "All connector modes are skipped due to low > +memory\n"); > > if (data->flags & TEST_PANNING_TOP_LEFT) > test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc); > @@ -1263,7 +1266,7 @@ static void test_planar_settings(data_t *data) > * If here is added non-intel tests below require will need to be > * changed to if(..) > */ > - igt_require(data->display.is_atomic); > + igt_require_f(data->display.is_atomic, "Atomic mode-set not > +supported\n"); > igt_require_intel(data->drm_fd); > devid = intel_get_drm_devid(data->drm_fd); > igt_require(intel_display_ver(devid) >= 9); > -- > 2.34.1 ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_plane:Add more logs to skips/failure (rev2) 2024-11-28 6:35 [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure Pranay Samala 2024-11-28 7:29 ` B, Jeevan @ 2024-11-28 7:51 ` Patchwork 2024-11-28 8:02 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-28 7:51 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 986 bytes --] == Series Details == Series: tests/kms_plane:Add more logs to skips/failure (rev2) URL : https://patchwork.freedesktop.org/series/141653/ State : success == Summary == CI Bug Log - changes from XEIGT_8128_BAT -> XEIGTPW_12212_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8128 -> IGTPW_12212 * Linux: xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f -> xe-2287-2a09bda868b896bc2a88a3a902e493063ce9e021 IGTPW_12212: 12212 IGT_8128: 8128 xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f: 24e36a5200d65a337d37827d4abcae11c9693f6f xe-2287-2a09bda868b896bc2a88a3a902e493063ce9e021: 2a09bda868b896bc2a88a3a902e493063ce9e021 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/index.html [-- Attachment #2: Type: text/html, Size: 1545 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_plane:Add more logs to skips/failure (rev2) 2024-11-28 6:35 [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure Pranay Samala 2024-11-28 7:29 ` B, Jeevan 2024-11-28 7:51 ` ✓ Xe.CI.BAT: success for tests/kms_plane:Add more logs to skips/failure (rev2) Patchwork @ 2024-11-28 8:02 ` Patchwork 2024-11-28 9:04 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-28 9:59 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-28 8:02 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev == Series Details == Series: tests/kms_plane:Add more logs to skips/failure (rev2) URL : https://patchwork.freedesktop.org/series/141653/ State : success == Summary == CI Bug Log - changes from IGT_8128 -> IGTPW_12212 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12212 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [FAIL][2] ([i915#12903]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-mtlp-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-arlh-3/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [PASS][7] -> [ABORT][8] ([i915#12061]) +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-arlh-2/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-arlh-2/igt@i915_selftest@live@workarounds.html * igt@kms_flip@basic-flip-vs-dpms@a-dp1: - bat-apl-1: [PASS][9] -> [DMESG-WARN][10] ([i915#12921]) +1 other test dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html #### Possible fixes #### * igt@i915_selftest@live: - bat-twl-2: [ABORT][11] ([i915#12919] / [i915#9413]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-twl-2/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-2: [ABORT][13] ([i915#9413]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-twl-2/igt@i915_selftest@live@gt_lrc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-twl-2/igt@i915_selftest@live@gt_lrc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][15] ([i915#9197]) -> [PASS][16] +3 other tests pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8128/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8128 -> IGTPW_12212 * Linux: CI_DRM_15754 -> CI_DRM_15755 CI-20190529: 20190529 CI_DRM_15754: 24e36a5200d65a337d37827d4abcae11c9693f6f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15755: 2a09bda868b896bc2a88a3a902e493063ce9e021 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12212: 12212 IGT_8128: 8128 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/index.html ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_plane:Add more logs to skips/failure (rev2) 2024-11-28 6:35 [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure Pranay Samala ` (2 preceding siblings ...) 2024-11-28 8:02 ` ✓ i915.CI.BAT: " Patchwork @ 2024-11-28 9:04 ` Patchwork 2024-11-28 9:59 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-28 9:04 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 160746 bytes --] == Series Details == Series: tests/kms_plane:Add more logs to skips/failure (rev2) URL : https://patchwork.freedesktop.org/series/141653/ State : failure == Summary == CI Bug Log - changes from XEIGT_8128_full -> XEIGTPW_12212_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12212_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12212_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12212_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] +3 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html * igt@kms_rmfb@close-fd: - shard-bmg: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_rmfb@close-fd.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_rmfb@close-fd.html * igt@xe_module_load@many-reload: - shard-lnl: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-5/igt@xe_module_load@many-reload.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-3/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_module_load@reload-no-display.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_module_load@reload-no-display.html #### Warnings #### * igt@xe_module_load@many-reload: - shard-bmg: [DMESG-WARN][9] ([Intel XE#3467]) -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@xe_module_load@many-reload.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_module_load@many-reload.html Known issues ------------ Here are the changes found in XEIGTPW_12212_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@core_hotunplug@hotreplug.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@core_hotunplug@hotreplug.html - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#1885]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@core_hotunplug@hotreplug.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1885]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html * igt@core_setmaster@master-drop-set-user: - shard-bmg: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#1727]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@core_setmaster@master-drop-set-user.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html * igt@core_setmaster_vs_auth: - shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#2423]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@core_setmaster_vs_auth.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@core_setmaster_vs_auth.html * igt@fbdev@nullptr: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@fbdev@nullptr.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@fbdev@nullptr.html * igt@fbdev@read: - shard-dg2-set2: [PASS][22] -> [SKIP][23] ([Intel XE#2134]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@fbdev@read.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@fbdev@read.html * igt@fbdev@write: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2134]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@fbdev@write.html * igt@intel_hwmon@hwmon-write: - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2136]) +29 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@intel_hwmon@hwmon-write.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2423] / [i915#2575]) +89 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-bmg: [PASS][29] -> [DMESG-FAIL][30] ([Intel XE#3468]) +4 other tests dmesg-fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2327]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2136]) +44 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2136]) +17 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_big_fb@x-tiled-addfb.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_big_fb@x-tiled-addfb.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][35] -> [DMESG-FAIL][36] ([Intel XE#2705] / [Intel XE#3468]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#1727] / [Intel XE#3468]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#607]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#367]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2136] / [Intel XE#2351]) +18 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +41 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#3432]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2652] / [Intel XE#787]) +15 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2724]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-limited-range: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2325]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2341]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#1178]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2321]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2320]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#3226] / [Intel XE#3468]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2291]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2425]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#2882]) +1 other test fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#3321] / [Intel XE#3486]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2316]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][65] ([Intel XE#3468]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-FAIL][66] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][67] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2423]) +100 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - shard-bmg: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#2597] / [Intel XE#2635]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#886]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-8/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [PASS][74] -> [SKIP][75] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/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-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#455]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: - shard-bmg: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][81] -> [SKIP][82] ([Intel XE#2351]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2333]) +4 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2313]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2312]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#346]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_joiner@basic-big-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_8128/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#356]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2-set2: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#2566]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_plane@pixel-format-source-clamping.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-3-size-64: - shard-bmg: NOTRUN -> [DMESG-WARN][95] ([Intel XE#3468]) +17 other tests dmesg-warn [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_plane_cursor@primary@pipe-c-hdmi-a-3-size-64.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2423]) +15 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2763]) +20 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2391]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#718]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][101] -> [SKIP][102] ([Intel XE#2446]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_pm_rpm@cursor.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2446]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_pm_rpm@cursor-dpms.html - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2446]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#2446]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@universal-planes@plane-32: - shard-lnl: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#3184]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-32.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-32.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#1489]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-dpms: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2136]) +23 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2423] / [i915#2575]) +50 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#899]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@query-forked-busy-hang: - shard-bmg: NOTRUN -> [DMESG-FAIL][115] ([Intel XE#3468]) +4 other tests dmesg-fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_vblank@query-forked-busy-hang.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [DMESG-WARN][116] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2168]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_vrr@lobf.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2504]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-connect: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2905]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_eudebug@basic-connect.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][120] ([Intel XE#1473]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1130]) +74 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][122] -> [DMESG-WARN][123] ([Intel XE#3468]) +45 other tests dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_exec_basic@many-bindexecqueue-rebind.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#1130]) +167 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_exec_basic@many-null-rebind.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2322]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#288]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@once-userptr-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1130]) +32 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_fault_mode@once-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch: - shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#1130]) +212 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch.html * igt@xe_exec_threads@threads-hang-fd-userptr: - shard-bmg: NOTRUN -> [DMESG-WARN][131] ([Intel XE#1727]) +1 other test dmesg-warn [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_exec_threads@threads-hang-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [PASS][132] -> [DMESG-WARN][133] ([Intel XE#3343] / [Intel XE#3468]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-bmg: NOTRUN -> [DMESG-WARN][134] ([Intel XE#3343] / [Intel XE#3468]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [PASS][135] -> [DMESG-WARN][136] ([Intel XE#3467]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][137] -> [SKIP][138] ([Intel XE#1192]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@reload: - shard-dg2-set2: NOTRUN -> [FAIL][139] ([Intel XE#3546]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_module_load@reload.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2248]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_peer2peer@write: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1061]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_pm@d3hot-basic: - shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@xe_pm@d3hot-basic.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@xe_pm@d3hot-basic.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][144] ([Intel XE#3468]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@xe_pm@d3hot-basic.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2284]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-bmg: [PASS][147] -> [DMESG-WARN][148] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-userptr.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#944]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@xe_query@multigpu-query-topology.html * igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@vecs: - shard-dg2-set2: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#1727] / [Intel XE#358]) +1 other test dmesg-warn [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@vecs.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@vecs.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-bmg: [FAIL][152] ([Intel XE#3249]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@core_getversion@all-cards.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@core_getversion@all-cards.html * igt@core_hotunplug@unbind-rebind: - shard-bmg: [SKIP][154] ([Intel XE#1885]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@core_hotunplug@unbind-rebind.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [SKIP][156] ([Intel XE#3453]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@info: - shard-dg2-set2: [SKIP][158] ([Intel XE#2134]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@fbdev@info.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@fbdev@info.html * igt@fbdev@pan: - shard-bmg: [SKIP][160] ([Intel XE#2134]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@fbdev@pan.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@fbdev@pan.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [DMESG-FAIL][162] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_interruptible@legacy-cursor: - shard-bmg: [DMESG-WARN][164] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][165] +2 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_atomic_interruptible@legacy-cursor.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_atomic_interruptible@legacy-cursor.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][166] ([Intel XE#2136]) -> [PASS][167] +15 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2: - shard-bmg: [DMESG-WARN][168] ([Intel XE#3468]) -> [PASS][169] +64 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][170] ([Intel XE#1475]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][172] ([Intel XE#2882]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][174] ([Intel XE#2423]) -> [PASS][175] +81 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [SKIP][176] ([Intel XE#2423] / [i915#2575]) -> [PASS][177] +51 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_flip@busy-flip.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-bmg: [DMESG-WARN][178] -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][180] ([Intel XE#2136]) -> [PASS][181] +14 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][182] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][183] +4 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_hdr@bpc-switch: - shard-bmg: [DMESG-WARN][184] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_hdr@bpc-switch.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_hdr@bpc-switch.html * igt@kms_plane_lowres@tiling-none: - shard-bmg: [DMESG-FAIL][186] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_plane_lowres@tiling-none.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_plane_lowres@tiling-none.html * igt@kms_pm_rpm@i2c: - shard-bmg: [SKIP][188] ([Intel XE#2446]) -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_pm_rpm@i2c.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [SKIP][190] ([Intel XE#2446]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_pm_rpm@universal-planes@plane-77: - shard-lnl: [DMESG-WARN][192] ([Intel XE#3184]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-77.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-77.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-bmg: [DMESG-FAIL][194] ([Intel XE#3468]) -> [PASS][195] +11 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@xe_exec_balancer@many-execqueues-virtual-rebind: - shard-dg2-set2: [SKIP][196] ([Intel XE#1130]) -> [PASS][197] +76 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html * igt@xe_exec_compute_mode@twice-userptr-invalidate: - shard-bmg: [INCOMPLETE][198] -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_exec_compute_mode@twice-userptr-invalidate.html * igt@xe_exec_threads@threads-basic: - shard-bmg: [DMESG-WARN][200] ([Intel XE#1727]) -> [PASS][201] +4 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_exec_threads@threads-basic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@xe_exec_threads@threads-basic.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-bmg: [DMESG-WARN][202] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [INCOMPLETE][204] -> [PASS][205] +1 other test pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_oa@mmio-triggered-reports@rcs-0: - shard-lnl: [FAIL][206] ([Intel XE#2249]) -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-3/igt@xe_oa@mmio-triggered-reports@rcs-0.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-4/igt@xe_oa@mmio-triggered-reports@rcs-0.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][208] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-basic: - shard-bmg: [DMESG-WARN][210] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@xe_pm@s3-basic.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@xe_pm@s3-basic.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][212] ([Intel XE#958]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_vm@bind-no-array-conflict: - shard-bmg: [SKIP][214] ([Intel XE#1130]) -> [PASS][215] +170 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_vm@bind-no-array-conflict.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_vm@bind-no-array-conflict.html #### Warnings #### * igt@core_hotunplug@hotrebind: - shard-bmg: [SKIP][216] ([Intel XE#1885]) -> [DMESG-WARN][217] ([Intel XE#3468]) +1 other test dmesg-warn [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@core_hotunplug@hotrebind.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@core_hotunplug@hotrebind.html * igt@core_hotunplug@hotrebind-lateclose: - shard-bmg: [DMESG-WARN][218] ([Intel XE#3468]) -> [SKIP][219] ([Intel XE#1885]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@core_hotunplug@hotrebind-lateclose.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][220] ([Intel XE#2233]) -> [SKIP][221] ([Intel XE#2423]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][222] ([Intel XE#2385]) -> [SKIP][223] ([Intel XE#2423]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][224] ([Intel XE#2423]) -> [SKIP][225] ([Intel XE#2370]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][226] ([Intel XE#316]) -> [SKIP][227] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: [SKIP][228] ([Intel XE#2136]) -> [DMESG-FAIL][229] ([Intel XE#3468]) +1 other test dmesg-fail [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][230] ([Intel XE#2327]) -> [SKIP][231] ([Intel XE#2136]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: [SKIP][232] ([Intel XE#2136]) -> [SKIP][233] ([Intel XE#2327]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][234] ([Intel XE#316]) -> [SKIP][235] ([Intel XE#2136]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-bmg: [DMESG-FAIL][236] ([Intel XE#3468]) -> [SKIP][237] ([Intel XE#2136]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: [SKIP][238] ([Intel XE#2136]) -> [DMESG-WARN][239] ([Intel XE#3468]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][240] ([Intel XE#1124]) -> [SKIP][241] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][242] ([Intel XE#2328]) -> [SKIP][243] ([Intel XE#2136]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: [SKIP][244] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][245] ([Intel XE#619]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][246] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][247] ([Intel XE#607]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][248] ([Intel XE#2136]) -> [SKIP][249] ([Intel XE#610]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][250] ([Intel XE#1124]) -> [SKIP][251] ([Intel XE#2136]) +13 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#1124]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][254] ([Intel XE#2136]) -> [SKIP][255] ([Intel XE#607]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][256] ([Intel XE#2136]) -> [SKIP][257] ([Intel XE#607]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][258] ([Intel XE#610]) -> [SKIP][259] ([Intel XE#2136]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#1124]) +9 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][262] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][263] ([Intel XE#1124]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][264] ([Intel XE#1124]) -> [SKIP][265] ([Intel XE#2136]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][266] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][267] ([Intel XE#2423]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][268] ([Intel XE#2423]) -> [SKIP][269] ([Intel XE#2314] / [Intel XE#2894]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][270] ([Intel XE#2191]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][272] ([Intel XE#367]) -> [SKIP][273] ([Intel XE#2423]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][274] ([Intel XE#2423]) -> [SKIP][275] ([Intel XE#367]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [SKIP][277] ([Intel XE#367]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][278] ([Intel XE#367]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#2887]) +14 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][282] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][283] ([Intel XE#455] / [Intel XE#787]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][284] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [DMESG-WARN][286] ([Intel XE#1727]) -> [SKIP][287] ([Intel XE#2136]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#2907]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][290] ([Intel XE#2136]) -> [SKIP][291] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: [SKIP][292] ([Intel XE#2136]) -> [SKIP][293] ([Intel XE#3432]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][294] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][295] ([Intel XE#2136]) +8 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][296] ([Intel XE#3432]) -> [SKIP][297] ([Intel XE#2136]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][298] ([Intel XE#2887]) -> [SKIP][299] ([Intel XE#2136]) +17 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html - shard-dg2-set2: [FAIL][300] ([Intel XE#616]) -> [SKIP][301] ([Intel XE#2136]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][302] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][303] ([Intel XE#2136]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][304] ([Intel XE#2907]) -> [SKIP][305] ([Intel XE#2136]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][308] ([Intel XE#314]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][310] ([Intel XE#2325]) -> [SKIP][311] ([Intel XE#2423]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][312] ([Intel XE#306]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_chamelium_color@ctm-green-to-red.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][314] ([Intel XE#2423]) -> [SKIP][315] ([Intel XE#2325]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html - shard-dg2-set2: [SKIP][316] ([Intel XE#2423] / [i915#2575]) -> [SKIP][317] ([Intel XE#306]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][318] ([Intel XE#2252]) -> [SKIP][319] ([Intel XE#2423]) +16 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-dg2-set2: [SKIP][320] ([Intel XE#373]) -> [SKIP][321] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: [SKIP][322] ([Intel XE#2423]) -> [SKIP][323] ([Intel XE#2252]) +7 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#373]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][326] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][327] ([Intel XE#1178]) +1 other test fail [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][328] ([Intel XE#2423] / [i915#2575]) -> [SKIP][329] ([Intel XE#307]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][330] ([Intel XE#2423]) -> [SKIP][331] ([Intel XE#2390]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [FAIL][332] ([Intel XE#1178]) -> [SKIP][333] ([Intel XE#2423] / [i915#2575]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_content_protection@legacy.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [INCOMPLETE][334] ([Intel XE#2715] / [Intel XE#3468]) -> [SKIP][335] ([Intel XE#2423]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][336] ([Intel XE#2341]) -> [SKIP][337] ([Intel XE#2423]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_content_protection@lic-type-1.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][338] ([Intel XE#2423]) -> [FAIL][339] ([Intel XE#1178]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_content_protection@srm.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][340] ([Intel XE#1188]) -> [SKIP][341] ([Intel XE#2423]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_content_protection@uevent.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#308]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][344] ([Intel XE#2423]) -> [SKIP][345] ([Intel XE#2320]) +7 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][346] ([Intel XE#2321]) -> [SKIP][347] ([Intel XE#2423]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][348] ([Intel XE#2320]) -> [SKIP][349] ([Intel XE#2423]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][350] ([Intel XE#2423]) -> [SKIP][351] ([Intel XE#2321]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: [SKIP][352] ([Intel XE#2423]) -> [SKIP][353] ([Intel XE#2286]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-legacy: - shard-bmg: [DMESG-WARN][354] ([Intel XE#3468]) -> [SKIP][355] ([Intel XE#2423]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][356] ([Intel XE#877]) -> [SKIP][357] ([Intel XE#2423]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][358] ([Intel XE#2423]) -> [DMESG-WARN][359] ([Intel XE#877]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [DMESG-WARN][360] ([Intel XE#3468]) -> [SKIP][361] ([Intel XE#2291]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][362] ([Intel XE#2141]) -> [SKIP][363] ([Intel XE#2136]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][364] ([Intel XE#1508]) -> [SKIP][365] ([Intel XE#2136]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][366] ([Intel XE#307]) -> [SKIP][367] ([Intel XE#2423] / [i915#2575]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html - shard-bmg: [SKIP][368] ([Intel XE#2323]) -> [SKIP][369] ([Intel XE#2423]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_display_modes@mst-extended-mode-negative.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][370] ([Intel XE#455]) -> [SKIP][371] ([Intel XE#2351]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_dsc@dsc-basic.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][372] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][373] ([Intel XE#455]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#2244]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][376] ([Intel XE#455]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_dsc@dsc-with-formats.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html - shard-bmg: [SKIP][378] ([Intel XE#2244]) -> [SKIP][379] ([Intel XE#2136]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][380] ([Intel XE#1695]) -> [SKIP][381] ([Intel XE#2136]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][382] ([Intel XE#776]) -> [SKIP][383] ([Intel XE#2136]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_fbcon_fbt@psr.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_fbcon_fbt@psr.html - shard-bmg: [SKIP][384] ([Intel XE#776]) -> [SKIP][385] ([Intel XE#2136]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_fbcon_fbt@psr.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-bmg: [SKIP][386] ([Intel XE#2423]) -> [SKIP][387] ([Intel XE#2372]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_feature_discovery@chamelium.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_feature_discovery@chamelium.html - shard-dg2-set2: [SKIP][388] ([Intel XE#701]) -> [SKIP][389] ([Intel XE#2423] / [i915#2575]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_feature_discovery@chamelium.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-bmg: [SKIP][390] ([Intel XE#2373]) -> [SKIP][391] ([Intel XE#2423]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_feature_discovery@display-3x.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][392] ([Intel XE#2423]) -> [SKIP][393] ([Intel XE#2375]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][394] ([Intel XE#2374]) -> [SKIP][395] ([Intel XE#2423]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_feature_discovery@psr1.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][396] ([Intel XE#2423] / [i915#2575]) -> [SKIP][397] ([Intel XE#1135]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_feature_discovery@psr2.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][398] ([Intel XE#2423]) -> [DMESG-WARN][399] ([Intel XE#3468]) +3 other tests dmesg-warn [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [SKIP][400] ([Intel XE#2423]) -> [SKIP][401] ([Intel XE#2316]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][402] ([Intel XE#301]) -> [SKIP][403] ([Intel XE#2423] / [i915#2575]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [SKIP][404] ([Intel XE#2423]) -> [INCOMPLETE][405] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468] / [Intel XE#3561]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend.html - shard-dg2-set2: [SKIP][406] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][407] ([Intel XE#1727] / [Intel XE#3468]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible: - shard-bmg: [DMESG-FAIL][408] ([Intel XE#3468]) -> [SKIP][409] ([Intel XE#2423]) +4 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][410] ([Intel XE#2882]) -> [SKIP][411] ([Intel XE#2423]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [DMESG-WARN][412] ([Intel XE#2955]) -> [INCOMPLETE][413] ([Intel XE#2597]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-bmg: [DMESG-WARN][414] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [SKIP][415] ([Intel XE#2136]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][418] ([Intel XE#455]) -> [SKIP][419] ([Intel XE#2136]) +3 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-bmg: [SKIP][420] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][421] ([Intel XE#2136]) +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][422] ([i915#5274]) -> [SKIP][423] ([Intel XE#2423] / [i915#2575]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_force_connector_basic@prune-stale-modes.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][425] ([Intel XE#651]) +2 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][426] ([Intel XE#651]) -> [SKIP][427] ([Intel XE#2136]) +20 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#2312]) +8 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][430] ([Intel XE#2311]) -> [SKIP][431] ([Intel XE#2312]) +9 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][432] ([Intel XE#651]) -> [SKIP][433] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [FAIL][434] ([Intel XE#2333]) -> [SKIP][435] ([Intel XE#2136]) +19 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][436] ([Intel XE#2136]) -> [FAIL][437] ([Intel XE#2333]) +5 other tests fail [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][438] ([Intel XE#2136]) -> [INCOMPLETE][439] ([Intel XE#1727] / [Intel XE#2050]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][440] ([Intel XE#2312]) -> [FAIL][441] ([Intel XE#2333]) +1 other test fail [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [DMESG-FAIL][442] ([Intel XE#3468]) -> [FAIL][443] ([Intel XE#2333]) +1 other test fail [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [FAIL][444] ([Intel XE#2333]) -> [DMESG-FAIL][445] ([Intel XE#3468]) +1 other test dmesg-fail [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [DMESG-FAIL][446] ([Intel XE#3468]) -> [SKIP][447] ([Intel XE#2312]) +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [FAIL][448] ([Intel XE#2333]) -> [SKIP][449] ([Intel XE#2312]) +3 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#2311]) +22 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][452] ([Intel XE#2312]) -> [SKIP][453] ([Intel XE#2311]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][454] ([Intel XE#2311]) -> [SKIP][455] ([Intel XE#2136]) +35 other tests skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][456] ([Intel XE#2136]) -> [SKIP][457] ([Intel XE#651]) +14 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][458] ([Intel XE#2313]) -> [SKIP][459] ([Intel XE#2136]) +39 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte: - shard-bmg: [SKIP][460] ([Intel XE#2313]) -> [SKIP][461] ([Intel XE#2312]) +7 other tests skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][462] ([Intel XE#2312]) -> [SKIP][463] ([Intel XE#2313]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][464] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][465] ([Intel XE#653]) +9 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#2352]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2-set2: [SKIP][468] ([Intel XE#2136]) -> [SKIP][469] ([Intel XE#455]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][470] ([Intel XE#1158]) -> [SKIP][471] ([Intel XE#2136]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][472] ([Intel XE#2136]) -> [SKIP][473] ([Intel XE#653]) +6 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][474] ([Intel XE#2136]) -> [SKIP][475] ([Intel XE#2313]) +25 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][476] ([Intel XE#653]) -> [SKIP][477] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][478] ([Intel XE#653]) -> [SKIP][479] ([Intel XE#2136]) +24 other tests skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][480] ([Intel XE#2312]) -> [SKIP][481] ([Intel XE#2136]) +3 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][482] ([Intel XE#2502]) -> [SKIP][483] ([Intel XE#2423]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_getfb@getfb-reject-ccs.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][484] ([Intel XE#455]) -> [SKIP][485] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_hdr@invalid-hdr.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][486] ([Intel XE#2136]) -> [SKIP][487] ([Intel XE#346]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][488] ([Intel XE#2934]) -> [SKIP][489] ([Intel XE#2136]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][490] ([Intel XE#2927]) -> [SKIP][491] ([Intel XE#2136]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html - shard-dg2-set2: [SKIP][492] ([Intel XE#2927]) -> [SKIP][493] ([Intel XE#2136]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_joiner@basic-ultra-joiner.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#2486]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@plane-position-hole-dpms: - shard-bmg: [SKIP][496] ([Intel XE#2423]) -> [INCOMPLETE][497] ([Intel XE#1035] / [Intel XE#1727]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_plane@plane-position-hole-dpms.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][498] ([Intel XE#616]) -> [SKIP][499] ([Intel XE#2423] / [i915#2575]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_plane_cursor@primary.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][500] ([Intel XE#2423]) -> [SKIP][501] ([Intel XE#2763]) +3 other tests skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-bmg: [SKIP][502] ([Intel XE#2763]) -> [SKIP][503] ([Intel XE#2423]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html - shard-dg2-set2: [SKIP][504] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][505] ([Intel XE#2423] / [i915#2575]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][506] ([Intel XE#870]) -> [SKIP][507] ([Intel XE#2136]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][508] ([Intel XE#870]) -> [SKIP][509] ([Intel XE#2136]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_pm_backlight@basic-brightness.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][510] ([Intel XE#2136]) -> [SKIP][511] ([Intel XE#2938]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-bmg: [SKIP][512] ([Intel XE#2136]) -> [SKIP][513] ([Intel XE#870]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_pm_backlight@fade.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_pm_backlight@fade.html - shard-dg2-set2: [SKIP][514] ([Intel XE#2136]) -> [SKIP][515] ([Intel XE#870]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_pm_backlight@fade.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][516] ([Intel XE#3309]) -> [SKIP][517] ([Intel XE#2136]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html - shard-bmg: [SKIP][518] ([Intel XE#3309]) -> [SKIP][519] ([Intel XE#2136]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][520] ([Intel XE#908]) -> [SKIP][521] ([Intel XE#2136] / [Intel XE#2351]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][522] ([Intel XE#2136]) -> [SKIP][523] ([Intel XE#2499]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][524] ([Intel XE#2446]) -> [SKIP][525] ([Intel XE#1439] / [Intel XE#3141]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2-set2: [SKIP][526] ([Intel XE#2446]) -> [DMESG-FAIL][527] ([Intel XE#3468]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_pm_rpm@drm-resources-equal.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-bmg: [INCOMPLETE][528] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [SKIP][529] ([Intel XE#2446]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][530] ([Intel XE#1489]) -> [SKIP][531] ([Intel XE#2136]) +9 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][532] ([Intel XE#2136]) -> [SKIP][533] ([Intel XE#1489]) +5 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][534] ([Intel XE#1489]) -> [SKIP][535] ([Intel XE#2136]) +9 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][536] ([Intel XE#2136]) -> [SKIP][537] ([Intel XE#1489]) +5 other tests skip [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][538] ([Intel XE#2387]) -> [SKIP][539] ([Intel XE#2136]) +1 other test skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][540] ([Intel XE#2136]) -> [SKIP][541] ([Intel XE#1122]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: [SKIP][542] ([Intel XE#2136]) -> [SKIP][543] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-blt.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2-set2: [SKIP][544] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][545] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_psr@fbc-pr-primary-render.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: [SKIP][546] ([Intel XE#2136]) -> [SKIP][547] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-blt.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][548] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][549] ([Intel XE#2136]) +12 other tests skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][550] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][551] ([Intel XE#2351]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][552] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][553] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_psr@psr-dpms.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: [SKIP][554] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][555] ([Intel XE#2136]) +18 other tests skip [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_psr@psr2-no-drrs.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-render: - shard-bmg: [SKIP][556] ([Intel XE#2234]) -> [SKIP][557] ([Intel XE#2136]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_psr@psr2-primary-render.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][558] ([Intel XE#2136]) -> [SKIP][559] ([Intel XE#2414]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][560] ([Intel XE#3414]) -> [SKIP][561] ([Intel XE#2423]) +1 other test skip [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][562] ([Intel XE#2330]) -> [SKIP][563] ([Intel XE#2423]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][564] ([Intel XE#1127]) -> [SKIP][565] ([Intel XE#2423] / [i915#2575]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][566] ([Intel XE#2423] / [i915#2575]) -> [SKIP][567] ([Intel XE#3414]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][568] ([Intel XE#2423]) -> [SKIP][569] ([Intel XE#2330]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][570] ([Intel XE#3414]) -> [SKIP][571] ([Intel XE#2423] / [i915#2575]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: [SKIP][572] ([Intel XE#2423]) -> [SKIP][573] ([Intel XE#3414]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][574] ([Intel XE#1435]) -> [SKIP][575] ([Intel XE#2423]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][576] ([Intel XE#2423] / [i915#2575]) -> [SKIP][577] ([Intel XE#1500]) [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][578] ([Intel XE#2450]) -> [SKIP][579] ([Intel XE#2423]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@ts-continuation-dpms-rpm: - shard-bmg: [SKIP][580] ([Intel XE#2423]) -> [DMESG-WARN][581] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm.html * igt@kms_vrr@cmrr: - shard-bmg: [SKIP][582] ([Intel XE#2423]) -> [SKIP][583] ([Intel XE#2168]) [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_vrr@cmrr.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-basic: - shard-bmg: [SKIP][584] ([Intel XE#2423]) -> [SKIP][585] ([Intel XE#1499]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_vrr@flip-basic.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-suspend: - shard-bmg: [SKIP][586] ([Intel XE#1499]) -> [SKIP][587] ([Intel XE#2423]) +1 other test skip [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@kms_vrr@flip-suspend.html [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][588] ([Intel XE#2423] / [i915#2575]) -> [SKIP][589] ([Intel XE#455]) +3 other tests skip [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@kms_vrr@flipline.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][590] ([Intel XE#2423]) -> [SKIP][591] ([Intel XE#756]) +1 other test skip [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][592] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][593] ([Intel XE#2423]) [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][594] ([Intel XE#1123]) -> [SKIP][595] ([Intel XE#1130]) [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][596] ([Intel XE#1126]) -> [SKIP][597] ([Intel XE#1130]) [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x369.html [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][598] ([Intel XE#1130]) -> [SKIP][599] ([Intel XE#1126]) [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][600] ([Intel XE#1130]) -> [SKIP][601] ([Intel XE#2905]) +6 other tests skip [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_eudebug@basic-close.html [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@discovery-empty: - shard-bmg: [SKIP][602] ([Intel XE#2905]) -> [SKIP][603] ([Intel XE#1130]) +12 other tests skip [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_eudebug@discovery-empty.html [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_eudebug@discovery-empty.html * igt@xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][604] ([Intel XE#2905]) -> [SKIP][605] ([Intel XE#1130]) +13 other tests skip [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_eudebug_online@basic-breakpoint.html [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: [SKIP][606] ([Intel XE#1130]) -> [SKIP][607] ([Intel XE#2905]) +7 other tests skip [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [DMESG-FAIL][608] ([Intel XE#3468]) -> [SKIP][609] ([Intel XE#1130]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@xe_evict@evict-beng-large-multi-vm-cm.html [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][610] ([Intel XE#1473]) -> [SKIP][611] ([Intel XE#1130]) [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate: - shard-bmg: [DMESG-WARN][612] ([Intel XE#1727]) -> [SKIP][613] ([Intel XE#1130]) +1 other test skip [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html * igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race: - shard-bmg: [DMESG-WARN][614] -> [SKIP][615] ([Intel XE#1130]) +1 other test skip [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race.html [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race.html * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue: - shard-bmg: [SKIP][616] ([Intel XE#1130]) -> [DMESG-WARN][617] ([Intel XE#1727]) +2 other tests dmesg-warn [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][618] ([Intel XE#2322]) -> [SKIP][619] ([Intel XE#1130]) +13 other tests skip [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: [SKIP][620] ([Intel XE#1130]) -> [SKIP][621] ([Intel XE#2322]) +7 other tests skip [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate: - shard-bmg: [DMESG-WARN][622] ([Intel XE#3468]) -> [SKIP][623] ([Intel XE#1130]) +8 other tests skip [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt@xe_exec_compute_mode@twice-userptr-invalidate: - shard-dg2-set2: [INCOMPLETE][624] -> [SKIP][625] ([Intel XE#1130]) [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_exec_compute_mode@twice-userptr-invalidate.html * igt@xe_exec_fault_mode@once-bindexecqueue: - shard-bmg: [SKIP][626] ([Intel XE#1130]) -> [DMESG-WARN][627] ([Intel XE#3468]) +3 other tests dmesg-warn [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_exec_fault_mode@once-bindexecqueue.html [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_exec_fault_mode@once-bindexecqueue.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][628] ([Intel XE#288]) -> [SKIP][629] ([Intel XE#1130]) +26 other tests skip [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][630] ([Intel XE#1130]) -> [SKIP][631] ([Intel XE#288]) +14 other tests skip [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][632] ([Intel XE#2360]) -> [SKIP][633] ([Intel XE#1130]) [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_threads@threads-bal-mixed-rebind: - shard-dg2-set2: [SKIP][634] ([Intel XE#1130]) -> [DMESG-WARN][635] ([Intel XE#1727]) +1 other test dmesg-warn [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-rebind.html [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-rebind.html * igt@xe_exec_threads@threads-hang-userptr: - shard-bmg: [INCOMPLETE][636] ([Intel XE#1169]) -> [SKIP][637] ([Intel XE#1130]) [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@xe_exec_threads@threads-hang-userptr.html [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [DMESG-WARN][638] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][639] ([Intel XE#1130]) [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][640] ([Intel XE#3468]) -> [DMESG-WARN][641] ([Intel XE#3467]) [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [DMESG-WARN][642] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][643] ([Intel XE#3343]) [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [SKIP][644] ([Intel XE#1130]) -> [DMESG-WARN][645] ([Intel XE#3343]) +1 other test dmesg-warn [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-dg2-set2: [DMESG-WARN][646] ([Intel XE#3343]) -> [SKIP][647] ([Intel XE#1130]) [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [DMESG-WARN][648] ([Intel XE#3343] / [Intel XE#3468]) -> [SKIP][649] ([Intel XE#1130]) [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [SKIP][650] ([Intel XE#1130]) -> [DMESG-WARN][651] ([Intel XE#3467] / [Intel XE#3468]) [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [DMESG-WARN][652] ([Intel XE#3467]) -> [SKIP][653] ([Intel XE#1130]) [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][654] ([Intel XE#3343]) -> [SKIP][655] ([Intel XE#1130]) [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][656] ([Intel XE#3499]) -> [SKIP][657] ([Intel XE#1130]) [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [SKIP][658] ([Intel XE#1130]) -> [FAIL][659] ([Intel XE#3499]) [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [DMESG-WARN][660] ([Intel XE#3467]) -> [SKIP][661] ([Intel XE#1130]) +2 other tests skip [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html - shard-bmg: [FAIL][662] ([Intel XE#3499]) -> [DMESG-FAIL][663] ([Intel XE#3467]) [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-dg2-set2: [SKIP][664] ([Intel XE#1130]) -> [DMESG-WARN][665] ([Intel XE#3467]) [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [DMESG-WARN][666] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][667] ([Intel XE#3467]) [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: [SKIP][668] ([Intel XE#2833]) -> [SKIP][669] ([Intel XE#1192] / [Intel XE#3026]) [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-lnl-3/igt@xe_live_ktest@xe_eudebug.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][670] ([Intel XE#1130]) -> [SKIP][671] ([Intel XE#560]) [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_media_fill@media-fill.html [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_media_fill@media-fill.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: [SKIP][672] ([Intel XE#1130]) -> [SKIP][673] ([Intel XE#3573]) +7 other tests skip [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@xe_oa@invalid-remove-userspace-config.html [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][674] ([Intel XE#1130]) -> [SKIP][675] ([Intel XE#2248]) [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][676] ([Intel XE#3573]) -> [SKIP][677] ([Intel XE#1130]) +10 other tests skip [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][678] ([Intel XE#977]) -> [SKIP][679] ([Intel XE#1130]) [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_pat@pat-index-xe2.html [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][680] ([Intel XE#1130]) -> [SKIP][681] ([Intel XE#1420]) [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read: - shard-dg2-set2: [FAIL][682] ([Intel XE#1173]) -> [SKIP][683] ([Intel XE#1061]) [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_peer2peer@read.html [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][684] ([Intel XE#2284]) -> [SKIP][685] ([Intel XE#1130]) +2 other tests skip [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@xe_pm@d3cold-mocs.html [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][686] ([Intel XE#1130]) -> [SKIP][687] ([Intel XE#2284]) +1 other test skip [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-6/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-exec-after: - shard-bmg: [DMESG-WARN][688] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][689] ([Intel XE#1130]) [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-5/igt@xe_pm@s2idle-exec-after.html [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [SKIP][690] ([Intel XE#1130]) -> [DMESG-WARN][691] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][692] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][693] ([Intel XE#1130]) [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_pm@s3-d3cold-basic-exec.html [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [DMESG-WARN][694] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][695] ([Intel XE#1130]) [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_pm@s3-mocs.html [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [DMESG-WARN][696] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][697] ([Intel XE#1130]) [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-exec-after: - shard-bmg: [SKIP][698] ([Intel XE#1130]) -> [DMESG-WARN][699] ([Intel XE#1727] / [Intel XE#3468]) [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_pm@s4-exec-after.html [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-5/igt@xe_pm@s4-exec-after.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][700] ([Intel XE#579]) -> [SKIP][701] ([Intel XE#1130]) [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [DMESG-WARN][702] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468]) -> [SKIP][703] ([Intel XE#1130]) [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_pm_residency@gt-c6-freeze.html [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][704] ([Intel XE#1130]) -> [SKIP][705] ([Intel XE#944]) [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-2/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][706] ([Intel XE#944]) -> [SKIP][707] ([Intel XE#1130]) +2 other tests skip [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][708] ([Intel XE#944]) -> [SKIP][709] ([Intel XE#1130]) [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][710] ([Intel XE#3342]) -> [SKIP][711] ([Intel XE#1130]) [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [SKIP][712] ([Intel XE#1130]) -> [ABORT][713] ([Intel XE#3421]) [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8128/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3561 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8128 -> IGTPW_12212 * Linux: xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f -> xe-2287-2a09bda868b896bc2a88a3a902e493063ce9e021 IGTPW_12212: 12212 IGT_8128: 8128 xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f: 24e36a5200d65a337d37827d4abcae11c9693f6f xe-2287-2a09bda868b896bc2a88a3a902e493063ce9e021: 2a09bda868b896bc2a88a3a902e493063ce9e021 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12212/index.html [-- Attachment #2: Type: text/html, Size: 210350 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_plane:Add more logs to skips/failure (rev2) 2024-11-28 6:35 [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure Pranay Samala ` (3 preceding siblings ...) 2024-11-28 9:04 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-28 9:59 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-28 9:59 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev == Series Details == Series: tests/kms_plane:Add more logs to skips/failure (rev2) URL : https://patchwork.freedesktop.org/series/141653/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15755_full -> IGTPW_12212_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12212_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12212_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_12212/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-tglu-1 Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12212_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@debugfs-forcewake-user: - shard-rkl: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-3/igt@i915_pm_rpm@debugfs-forcewake-user.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@i915_pm_rpm@debugfs-forcewake-user.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-1/igt@i915_selftest@live@gt_pm.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@i915_selftest@live@gt_pm.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [DMESG-FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk2/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pm_rpm@basic-rte: - {shard-dg2-9}: NOTRUN -> [DMESG-WARN][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-9/igt@kms_pm_rpm@basic-rte.html Known issues ------------ Here are the changes found in IGTPW_12212_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-4/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +9 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +12 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +41 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3936]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@gem_busy@semaphore.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4873]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#13008]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@gem_ccs@large-ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-5/igt@gem_ccs@large-ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#13008]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#7697]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][31] ([i915#6335]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#6335]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#8562]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][34] -> [FAIL][35] ([i915#9561]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg2-11/igt@gem_ctx_freq@sysfs.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8555]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8555]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-dg2: NOTRUN -> [FAIL][39] ([i915#11980] / [i915#12580]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@gem_ctx_persistence@hostile.html - shard-tglu: NOTRUN -> [FAIL][40] ([i915#11980] / [i915#12580]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][41] ([i915#1099]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-snb2/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#280]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][43] ([i915#280]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#280]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][45] ([i915#10030] / [i915#7975] / [i915#8213]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4771]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4771]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4771]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4036]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4036]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4036]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4525]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html - shard-tglu-1: NOTRUN -> [FAIL][53] ([i915#6117]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][54] ([i915#11965] / [i915#12558]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][55] ([i915#11965] / [i915#12558]) +2 other tests fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4812]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4812]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3539] / [i915#4852]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3539] / [i915#4852]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +19 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3281]) +16 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +9 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3281]) +17 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4537]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: NOTRUN -> [ABORT][67] ([i915#7975] / [i915#8213]) +1 other test abort [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4860]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4860]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4613]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@gem_lmem_swapping@basic.html - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#4613]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][75] ([i915#4613]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk4/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][76] ([i915#5493]) +1 other test timeout [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#4613]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#12193]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4565]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#284]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-3/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#284]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#284]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@gem_media_vme.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4083]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +20 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@gem_mmap_gtt@big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4077]) +19 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +14 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4083]) +11 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3282]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][91] ([i915#2658]) +1 other test warn [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-3/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][92] ([i915#2658]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk3/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][93] ([i915#12964]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][95] ([i915#12917] / [i915#12964]) +1 other test timeout [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3282]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][98] +332 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8428]) +9 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190] / [i915#8428]) +12 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4079]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#8411]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4885]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4077]) +17 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4079]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4079]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4879]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3297]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3282] / [i915#3297]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3282] / [i915#3297]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3297]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3297] / [i915#4880]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3281] / [i915#3297]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3297]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#3297]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][117] +37 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#2856]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#2527]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#2527] / [i915#2856]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#2856]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-3/igt@gen9_exec_parse@unaligned-access.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#2527]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#2527] / [i915#2856]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4881]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@i915_fb_tiling.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][125] ([i915#13029]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][126] ([i915#9820]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][127] ([i915#12817] / [i915#9820]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][128] ([i915#10131] / [i915#9820]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6412]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#8399]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6590]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#11681] / [i915#6621]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#11681] / [i915#6621]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][134] ([i915#11681] / [i915#6621]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#11681]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6188]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live: - shard-rkl: [PASS][137] -> [DMESG-FAIL][138] ([i915#12964]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-1/igt@i915_selftest@live.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@i915_selftest@live.html * igt@i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][139] ([i915#9311]) +1 other test dmesg-warn [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-7/igt@i915_selftest@mock.html - shard-glk: NOTRUN -> [DMESG-WARN][140] ([i915#9311]) +1 other test dmesg-warn [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk2/igt@i915_selftest@mock.html - shard-mtlp: NOTRUN -> [DMESG-WARN][141] ([i915#9311]) +1 other test dmesg-warn [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][142] ([i915#9311]) +1 other test dmesg-warn [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][143] ([i915#9311]) +1 other test dmesg-warn [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@i915_selftest@mock@memory_region.html * igt@i915_selftest@perf: - shard-tglu: [PASS][144] -> [ABORT][145] ([i915#13010]) +4 other tests abort [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-tglu-4/igt@i915_selftest@perf.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@i915_selftest@perf.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][146] ([i915#7443]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: [PASS][147] -> [INCOMPLETE][148] ([i915#4817]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-glk1/igt@i915_suspend@fence-restore-untiled.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk9/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7707]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7707]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4212]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4215]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4212]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4212]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#12454] / [i915#12712]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8709]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#8709]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8709]) +11 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#9531]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#9531]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#1769] / [i915#3555]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#1769] / [i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#1769] / [i915#3555]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#1769] / [i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][165] ([i915#5956]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#5286]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#5286]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#5286]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#4538] / [i915#5286]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#5286]) +6 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3638]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][172] +20 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3638]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4538] / [i915#5190]) +30 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6187]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +13 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#12313]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#6095]) +192 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#6095]) +191 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6095]) +99 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#10307] / [i915#10434] / [i915#6095]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#12805]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#6095]) +34 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#6095]) +94 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#12805]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#12805]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#12805]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#12805]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#6095]) +22 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#6095]) +74 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3742]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#11616] / [i915#7213]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3742]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4087]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#7828]) +16 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#7828]) +12 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#7828]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#7828]) +8 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#7828]) +6 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#7828]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-dg2: [PASS][201] -> [SKIP][202] ([i915#3555]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg2-10/igt@kms_color@deep-color.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-11/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#3116] / [i915#3299]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3299]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3299]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3116]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3299]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3116] / [i915#3299]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9424]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#7116]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#6944]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#9424]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#7118] / [i915#9424]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#7118] / [i915#9424]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#7116] / [i915#9424]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#13049]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#13049]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8814]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555]) +8 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8814]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg2: NOTRUN -> [SKIP][226] ([i915#13049]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#13049]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555]) +10 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#13049]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#7882]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk2/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][231] +14 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9809]) +9 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#4103]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#4213]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9067]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][236] ([i915#9067]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4103] / [i915#4213]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#4103] / [i915#4213]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#4103]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-move@pipe-b: - shard-rkl: NOTRUN -> [DMESG-WARN][240] ([i915#12964]) +18 other tests dmesg-warn [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_cursor_legacy@torture-move@pipe-b.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9833]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8588]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#8588]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#8588]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#12402]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8812]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#8812]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#3840]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#3840]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#3840]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#3840]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3955]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#3469]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#3469]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-4/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3469]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2065] / [i915#4854]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_feature_discovery@chamelium.html - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4854]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][259] ([i915#4854]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#1839]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][261] ([i915#1839]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#9337]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#658]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][264] ([i915#658]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#3637]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3637]) +6 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#3637]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9934]) +11 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8381]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#8381]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][271] ([i915#12745] / [i915#4839]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#4839]) +1 other test incomplete [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9934]) +16 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [PASS][274] -> [FAIL][275] ([i915#11989]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#9934]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg1: [PASS][277] -> [FAIL][278] ([i915#11989] / [i915#12517] / [i915#12996]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg1-18/igt@kms_flip@flip-vs-absolute-wf_vblank.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2: - shard-dg2: [PASS][279] -> [FAIL][280] ([i915#11989]) +2 other tests fail [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg2-11/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-11/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1: - shard-tglu: [PASS][281] -> [FAIL][282] ([i915#11989]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4: - shard-dg1: [PASS][283] -> [FAIL][284] ([i915#11989]) +2 other tests fail [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg1-18/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#12745]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: [PASS][286] -> [FAIL][287] ([i915#11989] / [i915#12840]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: - shard-rkl: [PASS][288] -> [FAIL][289] ([i915#11989]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html - shard-tglu: NOTRUN -> [FAIL][290] ([i915#11989]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#2587] / [i915#2672]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#8813]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#2587] / [i915#2672]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/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-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/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][295] ([i915#2587] / [i915#2672]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/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-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#2587] / [i915#2672] / [i915#3555]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8810]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#2672] / [i915#3555]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][301] ([i915#2672] / [i915#3555]) +6 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-rkl: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#2672]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#2672]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#3555] / [i915#8813]) +6 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][306] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#2672] / [i915#3555]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#5274]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#5274]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][310] -> [FAIL][311] ([i915#6880]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#5354]) +75 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: NOTRUN -> [SKIP][313] +41 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#5439]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3023]) +20 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#8708]) +31 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#1825]) +30 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][318] +68 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#4423]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][320] +36 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#8708]) +37 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#10055]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#10055]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#9766]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#9766]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#9766]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][327] +102 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#1825]) +53 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#8708]) +13 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#3458]) +28 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3458]) +16 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#3555] / [i915#8228]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#12713]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#12713]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8228]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#3555] / [i915#8228]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg2: [PASS][337] -> [SKIP][338] ([i915#3555] / [i915#8228]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#8228]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#3555] / [i915#8228]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8228]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#10656]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#10656]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#12388]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][345] ([i915#12388]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][346] ([i915#12388]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#12388]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#12339]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#4816]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#1839]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][351] ([i915#1839]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#6301]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][353] ([i915#6301]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][354] ([i915#6301]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][355] ([i915#6301]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-12/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][356] ([i915#12756] / [i915#1982]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][357] ([i915#1982]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-rkl: [PASS][358] -> [DMESG-WARN][359] ([i915#12964]) +54 other tests dmesg-warn [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#3555] / [i915#8821]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#3555] / [i915#8821]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#8806]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#5354] / [i915#9423]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#12247]) +5 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#12247]) +25 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#12247] / [i915#9423]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#12247]) +7 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#12247]) +4 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-rkl: [PASS][369] -> [DMESG-WARN][370] ([i915#12964] / [i915#1982]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#12247]) +18 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#12247] / [i915#6953]) +3 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][373] ([i915#12247] / [i915#6953]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][374] ([i915#12247] / [i915#6953]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#12247]) +18 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#12343]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][377] ([i915#12343]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#3828]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#3828]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][380] ([i915#3828]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#5978]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#9685]) +2 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9685]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#9685]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][385] ([i915#9685]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#3361]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][387] ([i915#4281]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#8430]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][389] ([i915#8430]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][390] ([i915#8430]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][391] ([i915#8430]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-5/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][392] ([i915#8430]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][393] ([i915#9519]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][394] ([i915#8717]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#9519]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][396] ([i915#9519]) +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#9519]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][398] -> [SKIP][399] ([i915#9519]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15755/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#6524]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][401] ([i915#6524]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#6524] / [i915#6805]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html - shard-dg1: NOTRUN -> [SKIP][403] ([i915#6524]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][404] ([i915#6524]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#11520]) +16 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][406] ([i915#11520]) +5 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][407] ([i915#11520]) +12 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][408] ([i915#9808]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][409] ([i915#12316]) +10 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][410] ([i915#11520]) +7 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][411] ([i915#11520]) +8 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-glk5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][412] ([i915#11520]) +4 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][413] ([i915#9683]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][414] ([i915#9683]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][415] ([i915#9688]) +31 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-4/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][416] ([i915#1072] / [i915#9732]) +30 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-14/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][417] ([i915#9732]) +19 other tests skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-3/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][418] ([i915#9732]) +9 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][419] ([i915#4077] / [i915#9688]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-8/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][420] ([i915#1072] / [i915#9732]) +15 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][421] ([i915#1072] / [i915#9732]) +39 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][422] ([i915#12755]) +2 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][423] ([i915#5190]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][424] ([i915#5289]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][425] ([i915#5289]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][426] ([i9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12212/index.html ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-28 10:00 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-28 6:35 [PATCH i-g-t v2] tests/kms_plane:Add more logs to skips/failure Pranay Samala 2024-11-28 7:29 ` B, Jeevan 2024-11-28 7:51 ` ✓ Xe.CI.BAT: success for tests/kms_plane:Add more logs to skips/failure (rev2) Patchwork 2024-11-28 8:02 ` ✓ i915.CI.BAT: " Patchwork 2024-11-28 9:04 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-28 9:59 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox