* [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass
@ 2026-03-23 14:11 Pranay Samala
2026-03-23 16:55 ` ✓ Xe.CI.BAT: success for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Pranay Samala @ 2026-03-23 14:11 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
When joiner mode is detected, the returned mode pointer from
igt_get_non_joiner_mode() points into connector-owned memory
which can become invalid after subsequent display state changes.
Fix this by copying the mode into local variable for stable
storage. Skip the output if no non-joiner mode is found.
Fixes: 10dccc7fc82f ("tests/intel/kms_sharpness_filter: Detect and bypass joiner modes")
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/7045
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/intel/kms_sharpness_filter.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c
index 96fb139ae..c2295c0ee 100644
--- a/tests/intel/kms_sharpness_filter.c
+++ b/tests/intel/kms_sharpness_filter.c
@@ -430,6 +430,7 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
igt_display_t *display = &data->display;
igt_output_t *output;
igt_crtc_t *crtc;
+ drmModeModeInfo *m, selected_mode;
char name[40];
for_each_connected_output(display, output) {
@@ -438,7 +439,6 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
data->output = output;
data->crtc = crtc;
- data->mode = igt_output_get_mode(data->output);
/*
* FIXME: Joiner + CASF currently unsupported.
@@ -446,7 +446,15 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
* Until then, run on non-joiner mode in joiner configuration.
*/
if (is_joiner_mode(data->drm_fd, data->output)) {
- data->mode = igt_get_non_joiner_mode(data->drm_fd, data->output);
+ m = igt_get_non_joiner_mode(data->drm_fd, data->output);
+ if (!m) {
+ igt_info("No non-joiner mode found on %s\n",
+ igt_output_name(data->output));
+ continue;
+ }
+
+ selected_mode = *m;
+ data->mode = &selected_mode;
igt_info("Executing on mode %dx%d@%d\n",
data->mode->hdisplay,
data->mode->vdisplay,
@@ -463,6 +471,7 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
igt_output_set_crtc(data->output,
data->crtc);
+ igt_output_override_mode(data->output, data->mode);
if (!intel_pipe_output_combo_valid(display)) {
igt_output_set_crtc(data->output, NULL);
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala @ 2026-03-23 16:55 ` Patchwork 2026-03-23 17:21 ` ✓ i915.CI.BAT: " Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-23 16:55 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2161 bytes --] == Series Details == Series: tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass URL : https://patchwork.freedesktop.org/series/163702/ State : success == Summary == CI Bug Log - changes from XEIGT_8819_BAT -> XEIGTPW_14836_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14836_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_waitfence@abstime: - bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-dg2-oem2/igt@xe_waitfence@abstime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/bat-dg2-oem2/igt@xe_waitfence@abstime.html * igt@xe_waitfence@reltime: - bat-bmg-2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-bmg-2/igt@xe_waitfence@reltime.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/bat-bmg-2/igt@xe_waitfence@reltime.html - bat-dg2-oem2: [FAIL][5] ([Intel XE#6520]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-dg2-oem2/igt@xe_waitfence@reltime.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/bat-dg2-oem2/igt@xe_waitfence@reltime.html [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506 [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8819 -> IGTPW_14836 * Linux: xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 -> xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8 IGTPW_14836: 14836 IGT_8819: 8819 xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8: ad0e76efae0da3432314b19f2d56c93149fba7e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/index.html [-- Attachment #2: Type: text/html, Size: 2848 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala 2026-03-23 16:55 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-03-23 17:21 ` Patchwork 2026-03-24 0:21 ` ✓ Xe.CI.FULL: " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-23 17:21 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2285 bytes --] == Series Details == Series: tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass URL : https://patchwork.freedesktop.org/series/163702/ State : success == Summary == CI Bug Log - changes from IGT_8819 -> IGTPW_14836 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14836 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-dg2-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/bat-dg2-8/igt@i915_selftest@live.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-14: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-dg2-14/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-arls-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8819 -> IGTPW_14836 * Linux: CI_DRM_18191 -> CI_DRM_18192 CI-20190529: 20190529 CI_DRM_18191: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18192: ad0e76efae0da3432314b19f2d56c93149fba7e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14836: 14836 IGT_8819: 8819 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/index.html [-- Attachment #2: Type: text/html, Size: 3070 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala 2026-03-23 16:55 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-03-23 17:21 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-24 0:21 ` Patchwork 2026-03-24 2:52 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-24 0:21 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46882 bytes --] == Series Details == Series: tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass URL : https://patchwork.freedesktop.org/series/163702/ State : success == Summary == CI Bug Log - changes from XEIGT_8819_FULL -> XEIGTPW_14836_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14836_FULL: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_dp_aux_dev@basic}: - shard-bmg: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_dp_aux_dev@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_dp_aux_dev@basic.html Known issues ------------ Here are the changes found in XEIGTPW_14836_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367] / [Intel XE#7354]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7642]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x256@pipe-d-dp-2: - shard-bmg: [PASS][17] -> [FAIL][18] ([Intel XE#6747]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-dp-2.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-dp-2.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#5354]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2291]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2291] / [Intel XE#7343]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][25] -> [FAIL][26] ([Intel XE#7571]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2244]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3: - shard-bmg: [PASS][28] -> [ABORT][29] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2316]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#301]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-9/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7179]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2311]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4141]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2312]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7061] / [Intel XE#7356]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2313]) +15 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2350] / [Intel XE#7503]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdr@invalid-metadata-sizes: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#1503]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_hdr@invalid-metadata-sizes.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7283]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#4596]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1489]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#2414]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#6503]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#4459]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6599]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][56] ([Intel XE#6321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#6321]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7140]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@xe_evict@evict-small-multi-queue-cm.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7136]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6874]) +14 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7636]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html * igt@xe_exec_system_allocator@eu-fault-4k-range-device-host: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#7592]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-7/igt@xe_exec_system_allocator@eu-fault-4k-range-device-host.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-lnl-6/igt@xe_exec_system_allocator@eu-fault-4k-range-device-host.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7138]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html * igt@xe_module_load@force-load: - shard-bmg: [PASS][67] -> [ABORT][68] ([Intel XE#7578]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@xe_module_load@force-load.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_module_load@force-load.html * igt@xe_multigpu_svm@mgpu-migration-basic: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#6964]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@xe_multigpu_svm@mgpu-migration-basic.html * igt@xe_pm@d3cold-i2c: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#5694] / [Intel XE#7370]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#944]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][74] ([Intel XE#7445]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@intel_hwmon@hwmon-write.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@intel_hwmon@hwmon-write.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][76] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [SKIP][78] ([Intel XE#2291]) -> [PASS][79] +4 other tests pass [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [SKIP][80] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][82] ([Intel XE#4294]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][84] ([Intel XE#2316]) -> [PASS][85] +7 other tests pass [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][86] ([Intel XE#301]) -> [PASS][87] +1 other test pass [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_plane_cursor@primary: - shard-bmg: [FAIL][88] -> [PASS][89] +1 other test pass [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane_cursor@primary.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@kms_plane_cursor@primary.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [SKIP][90] ([Intel XE#4596]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-x.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html * igt@xe_exec_system_allocator@once-mmap-mlock-nomemset: - shard-bmg: [DMESG-FAIL][92] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-mlock-nomemset.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_exec_system_allocator@once-mmap-mlock-nomemset.html * igt@xe_exec_system_allocator@once-mmap-race-nomemset: - shard-bmg: [SKIP][94] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][95] +1 other test pass [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html * igt@xe_exec_system_allocator@process-many-new-busy: - shard-bmg: [SKIP][96] ([Intel XE#6703]) -> [PASS][97] +100 other tests pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@process-many-new-busy.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_exec_system_allocator@process-many-new-busy.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early: - shard-bmg: [ABORT][98] -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html * igt@xe_module_load@many-reload: - shard-bmg: [DMESG-WARN][100] -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_module_load@many-reload.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@xe_module_load@many-reload.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][102] ([Intel XE#6569]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-bmg: [FAIL][104] ([Intel XE#5937]) -> [PASS][105] +1 other test pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: [SKIP][106] ([Intel XE#6703]) -> [SKIP][107] ([Intel XE#1124]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][110] ([Intel XE#6703]) -> [SKIP][111] ([Intel XE#2652]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2887]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#2252]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-bmg: [SKIP][116] ([Intel XE#6703]) -> [SKIP][117] ([Intel XE#7642]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_content_protection@atomic-dpms-hdcp14.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: [SKIP][118] ([Intel XE#7642]) -> [FAIL][119] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: [FAIL][120] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][121] ([Intel XE#7642]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_content_protection@legacy-hdcp14.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][122] ([Intel XE#6703]) -> [FAIL][123] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_content_protection@srm.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][124] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][125] ([Intel XE#7642]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_content_protection@uevent.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2311]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#2312]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][130] ([Intel XE#2311]) -> [SKIP][131] ([Intel XE#2312]) +13 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#4141]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][134] ([Intel XE#4141]) -> [SKIP][135] ([Intel XE#2312]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][136] ([Intel XE#2312]) -> [SKIP][137] ([Intel XE#4141]) +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#7061] / [Intel XE#7356]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][140] ([Intel XE#2312]) -> [SKIP][141] ([Intel XE#2311]) +12 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2313]) +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#2313]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][146] ([Intel XE#2313]) -> [SKIP][147] ([Intel XE#2312]) +15 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][148] ([Intel XE#3544]) -> [SKIP][149] ([Intel XE#3374] / [Intel XE#3544]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#7283]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][152] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][153] ([Intel XE#4596]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [SKIP][155] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-bmg: [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#1489]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr@pr-primary-render: - shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_psr@pr-primary-render.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_psr@pr-primary-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-bmg: [SKIP][160] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][161] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#1499]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][164] ([Intel XE#6703]) -> [SKIP][165] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: [SKIP][168] ([Intel XE#6703]) -> [SKIP][169] ([Intel XE#7136]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd: - shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#6874]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [INCOMPLETE][173] ([Intel XE#7098]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_threads@threads-multi-queue-fd-basic: - shard-bmg: [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#7138]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-basic.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-fd-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 [Intel XE#7592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7592 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8819 -> IGTPW_14836 * Linux: xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 -> xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8 IGTPW_14836: 14836 IGT_8819: 8819 xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8: ad0e76efae0da3432314b19f2d56c93149fba7e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14836/index.html [-- Attachment #2: Type: text/html, Size: 56064 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala ` (2 preceding siblings ...) 2026-03-24 0:21 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-03-24 2:52 ` Patchwork 2026-03-24 15:19 ` [PATCH i-g-t] " Garg, Nemesa 2026-03-25 9:55 ` Karthik B S 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-03-24 2:52 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 136480 bytes --] == Series Details == Series: tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass URL : https://patchwork.freedesktop.org/series/163702/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18192_full -> IGTPW_14836_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14836_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14836_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_14836/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14836_full: ### IGT changes ### #### Possible regressions #### * igt@sysfs_timeslice_duration@duration@rcs0: - shard-dg2: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-3/igt@sysfs_timeslice_duration@duration@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@sysfs_timeslice_duration@duration@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_dp_aux_dev@basic}: - shard-rkl: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_dp_aux_dev@basic.html Known issues ------------ Here are the changes found in IGTPW_14836_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#14544] / [i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][15] ([i915#13356]) +1 other test incomplete [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-snb1/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4771]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-5/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#4525]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-glk10: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@gem_exec_flush@basic-wb-rw-before-default.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +14 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#7276]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][37] ([i915#13196] / [i915#13356]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk5/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613] / [i915#7582]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-1/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613] / [i915#7582]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#12193]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4565]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk2/igt@gem_lmem_swapping@random-engines.html - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#284]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#284]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#284]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][52] ([i915#284]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@gem_media_vme.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@gem_mmap@bad-object.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-5/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-4/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@gem_partial_pwrite_pread@write-snoop.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-13/igt@gem_partial_pwrite_pread@write-snoop.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@gem_pread@snoop.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-snb: NOTRUN -> [SKIP][63] +96 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-snb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-8/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#15656]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#3297]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@gem_userptr_blits@unsync-overlap.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [PASS][76] -> [INCOMPLETE][77] ([i915#13356]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#2856]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@gen9_exec_parse@bb-start-param.html - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-2/igt@gen9_exec_parse@bb-start-param.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#14073]) +7 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@i915_drm_fdinfo@busy-hang@vcs0.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#14073]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#15479]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][87] ([i915#15342]) +1 other test abort [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][88] -> [DMESG-WARN][89] ([i915#14545]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-5/igt@i915_module_load@resize-bar.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@i915_module_load@resize-bar.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#6412]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][91] ([i915#6412]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#8399]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][93] -> [FAIL][94] ([i915#12964]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][95] ([i915#13790] / [i915#2681]) +1 other test warn [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#14498]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][97] ([i915#13356]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#11681]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#11681]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-8/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#6188]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#7707]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][103] ([i915#7707]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@intel_hwmon@hwmon-read.html * igt@kms_3d@basic: - shard-mtlp: [PASS][104] -> [SKIP][105] ([i915#15726]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-8/igt@kms_3d@basic.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@kms_3d@basic.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#5190]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#12454] / [i915#12712]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#12761] / [i915#14995]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#9531]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#9531]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][112] ([i915#1769]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][116] -> [FAIL][117] ([i915#5956]) +3 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-10/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14544] / [i915#5286]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#15733] / [i915#5138]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3828]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][129] +28 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][130] +44 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/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][131] ([i915#4538]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +196 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][134] +539 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +86 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#12313]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +93 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12313]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#12805]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#6095]) +41 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][142] ([i915#15582]) +1 other test incomplete [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#6095]) +68 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-glk10: NOTRUN -> [INCOMPLETE][144] ([i915#15582]) +1 other test incomplete [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][145] +41 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#14544] / [i915#6095]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#14544] / [i915#6095]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4423] / [i915#6095]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +24 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +44 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][154] +70 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6095]) +74 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#13783]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][158] +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-10/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +12 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_concurrent@multi-plane-atomic-lowres: - shard-dg1: NOTRUN -> [DMESG-WARN][165] ([i915#4423]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_concurrent@multi-plane-atomic-lowres.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15330]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#15865]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#15865]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#15865]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#15865]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@kms_content_protection@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#15865]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@kms_content_protection@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#15865]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][174] -> [FAIL][175] ([i915#13566]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [PASS][176] -> [FAIL][177] ([i915#13566]) +3 other tests fail [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][178] ([i915#13566]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8814]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13049]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8814]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][186] ([i915#13566]) +3 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][187] ([i915#12358] / [i915#14152] / [i915#7882]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][188] ([i915#12358] / [i915#14152]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: NOTRUN -> [FAIL][189] ([i915#13028]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#9809]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk10: NOTRUN -> [FAIL][193] ([i915#15768]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#4103]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9833]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#9723]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#13691]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3804]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#1769] / [i915#3555] / [i915#3804]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3804]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3804]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#13748]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][203] ([i915#13748]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#13707]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][205] ([i915#13707]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#13707]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][207] ([i915#13707]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-8/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#13707]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#13707]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3840]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3840] / [i915#9053]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#2065] / [i915#4854]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#4854]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#1839]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][217] ([i915#1839]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#1839]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#1839]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-8/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#1839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3637] / [i915#9934]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8381]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8381]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8381]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#12745] / [i915#4839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk1/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][226] ([i915#4839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9934]) +14 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-snb: [PASS][229] -> [INCOMPLETE][230] ([i915#12314]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-snb4/igt@kms_flip@2x-plain-flip-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-snb5/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#9934]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#9934]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3637] / [i915#9934]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#15643]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#15643]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15643]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15643]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#15643]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#15643]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15643] / [i915#5190]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#1825]) +16 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#14544] / [i915#1825]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#15102]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#15102]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#15102] / [i915#3458]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#1825]) +49 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5439]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#5439]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#10055]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#10055]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9766]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#15102]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3023]) +27 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#15102]) +20 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#5354]) +20 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][257] +61 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#8708]) +6 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15102]) +13 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][260] ([i915#8708]) +6 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#15102] / [i915#3458]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [PASS][263] -> [SKIP][264] ([i915#15725]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-9/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#15460]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15460]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15458]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15458]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15638] / [i915#15722]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#6301]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][272] +29 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-mtlp: NOTRUN -> [SKIP][273] +6 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: NOTRUN -> [INCOMPLETE][274] ([i915#12756] / [i915#13476]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html - shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#12756] / [i915#13409] / [i915#13476]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][276] ([i915#13476]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#13409] / [i915#13476]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#13705]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#13705]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#15709]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15709]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#15709]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#15709]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#15608]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#15709]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][286] ([i915#12178]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#7862]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12169]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][289] ([i915#10647]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-dg1: [PASS][290] -> [DMESG-WARN][291] ([i915#4423]) +7 other tests dmesg-warn [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-13/igt@kms_plane_alpha_blend@coverage-7efc.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_plane_alpha_blend@coverage-7efc.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#13958]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#13958]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#13958]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#14259]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#6953] / [i915#9423]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#6953]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#6953]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#15329]) +9 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15329] / [i915#3555] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#15329]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#5354]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-16/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#12343]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#5354]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#3828]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#9685]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][308] -> [SKIP][309] ([i915#15073]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#4077]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_pm_rpm@fences-dpms.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#4077]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][312] -> [SKIP][313] ([i915#15073]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#15073]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#15073]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [PASS][316] -> [INCOMPLETE][317] ([i915#14419]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#11520]) +17 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#11520]) +5 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#9808]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12316]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][322] ([i915#11520]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#11520]) +8 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-snb: NOTRUN -> [SKIP][324] ([i915#11520]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][325] ([i915#11520]) +16 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-dg2: NOTRUN -> [SKIP][326] ([i915#11520]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#11520]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#9683]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9732]) +17 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9688]) +9 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +10 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-4/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +13 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +29 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +10 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#12755] / [i915#15867]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-8/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#12755] / [i915#15867] / [i915#5190]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#5289]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#5289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#12755] / [i915#15867]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#3555]) +7 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#3555]) +7 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-1/igt@kms_scaling_modes@scaling-mode-none.html - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#3555]) +4 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3555]) +7 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3555]) +9 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#3555] / [i915#8809] / [i915#8823]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][349] ([i915#10959]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][350] ([i915#12276]) +3 other tests incomplete [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#15243] / [i915#3555]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@kms_vrr@flip-basic.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#15243] / [i915#3555]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#9906]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][354] ([i915#9906]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][355] ([i915#9906]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8808]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#11920]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-3/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#11920]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#11920]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#11920]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-7/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#11920]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#8516]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#8516]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#8516]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: [PASS][367] -> [INCOMPLETE][368] ([i915#13356] / [i915#14242]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk1/igt@perf_pmu@rc6-suspend.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk2/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#3708] / [i915#4077]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#3708]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][371] ([i915#12910]) +9 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-4/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#9917]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-mtlp: NOTRUN -> [FAIL][373] ([i915#12910]) +8 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [FAIL][374] ([i915#15454]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][376] ([i915#13356]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][378] ([i915#13390]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_eio@in-flight-suspend.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_big@single: - shard-mtlp: [DMESG-FAIL][380] ([i915#15478]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-2/igt@gem_exec_big@single.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-6/igt@gem_exec_big@single.html * igt@gem_exec_fence@syncobj-timeline-invalid-flags: - shard-mtlp: [DMESG-WARN][382] ([i915#13562]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-7/igt@gem_exec_fence@syncobj-timeline-invalid-flags.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-8/igt@gem_exec_fence@syncobj-timeline-invalid-flags.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-glk: [INCOMPLETE][384] -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk4/igt@gem_exec_whisper@basic-contexts-forked-all.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk5/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [ABORT][386] ([i915#15131]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][388] ([i915#13809]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@gem_softpin@noreloc-s3.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@gem_softpin@noreloc-s3.html * igt@gem_workarounds@suspend-resume: - shard-glk: [INCOMPLETE][390] ([i915#13356] / [i915#14586]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk8/igt@gem_workarounds@suspend-resume.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk1/igt@gem_workarounds@suspend-resume.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][392] ([i915#7984]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-5/igt@i915_power@sanity.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-2/igt@i915_power@sanity.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][394] ([i915#4817]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@i915_suspend@debugfs-reader.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-4/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][396] ([i915#4817]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk9/igt@i915_suspend@sysfs-reader.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk9/igt@i915_suspend@sysfs-reader.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][398] ([i915#12761]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][400] ([i915#5956]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][402] ([i915#15662]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][404] ([i915#5956]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][406] ([i915#13566]) -> [PASS][407] +3 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [FAIL][408] ([i915#15389] / [i915#6880]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_hdmi_inject@inject-4k: - shard-dg1: [DMESG-WARN][410] ([i915#4423]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-14/igt@kms_hdmi_inject@inject-4k.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-17/igt@kms_hdmi_inject@inject-4k.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][412] ([i915#15073]) -> [PASS][413] +2 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][414] ([i915#15073]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][416] ([i915#15073]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [FAIL][418] ([i915#4349]) -> [PASS][419] +7 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [FAIL][420] ([i915#4349]) -> [PASS][421] +5 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@perf_pmu@render-node-busy-idle@vcs1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-1/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-dg1: [FAIL][422] ([i915#4349]) -> [PASS][423] +3 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-16/igt@perf_pmu@render-node-busy-idle@vcs1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html #### Warnings #### * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][424] ([i915#280]) -> [SKIP][425] ([i915#14544] / [i915#280]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_big@single: - shard-tglu: [DMESG-FAIL][426] ([i915#15478]) -> [FAIL][427] ([i915#15816]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-5/igt@gem_exec_big@single.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: [SKIP][428] ([i915#14544] / [i915#3281]) -> [SKIP][429] ([i915#3281]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: [SKIP][430] ([i915#3281]) -> [SKIP][431] ([i915#14544] / [i915#3281]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@gem_exec_reloc@basic-range-active.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html * igt@gem_pread@uncached: - shard-rkl: [SKIP][432] ([i915#3282]) -> [SKIP][433] ([i915#14544] / [i915#3282]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@gem_pread@uncached.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@gem_pread@uncached.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@gem_readwrite@beyond-eob.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][436] ([i915#8411]) -> [SKIP][437] ([i915#14544] / [i915#8411]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][438] ([i915#2527]) -> [SKIP][439] ([i915#14544] / [i915#2527]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@gen9_exec_parse@allowed-single.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#5286]) -> [SKIP][441] ([i915#5286]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][442] ([i915#5286]) -> [SKIP][443] ([i915#14544] / [i915#5286]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: [SKIP][444] ([i915#4538]) -> [SKIP][445] ([i915#4423] / [i915#4538]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-rkl: [SKIP][446] ([i915#14544]) -> [SKIP][447] +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][448] ([i915#6095]) -> [SKIP][449] ([i915#14544] / [i915#6095]) +3 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-dg1: [SKIP][450] ([i915#6095]) -> [SKIP][451] ([i915#4423] / [i915#6095]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][452] ([i915#14098] / [i915#6095]) -> [SKIP][453] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][454] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][455] ([i915#14098] / [i915#6095]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#3742]) -> [SKIP][457] ([i915#3742]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: [SKIP][458] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][459] ([i915#11151] / [i915#7828]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-rkl: [SKIP][460] ([i915#11151] / [i915#7828]) -> [SKIP][461] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#15865]) -> [SKIP][463] ([i915#15865]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][464] ([i915#15865]) -> [SKIP][465] ([i915#9433]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-17/igt@kms_content_protection@mei-interface.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][466] ([i915#15865]) -> [SKIP][467] ([i915#14544] / [i915#15865]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_content_protection@type1.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][468] ([i915#3555]) -> [SKIP][469] ([i915#14544] / [i915#3555]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][470] ([i915#13049]) -> [SKIP][471] ([i915#13049] / [i915#14544]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][472] ([i915#13749] / [i915#14544]) -> [SKIP][473] ([i915#13749]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][474] ([i915#3555] / [i915#3840]) -> [SKIP][475] ([i915#14544] / [i915#3555] / [i915#3840]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@psr2: - shard-dg1: [SKIP][476] ([i915#658]) -> [SKIP][477] ([i915#4423] / [i915#658]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-17/igt@kms_feature_discovery@psr2.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-12/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#9934]) -> [SKIP][479] ([i915#9934]) +2 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][480] ([i915#9934]) -> [SKIP][481] ([i915#14544] / [i915#9934]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg1: [SKIP][482] ([i915#15643]) -> [SKIP][483] ([i915#15643] / [i915#4423]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-dg1: [SKIP][484] -> [SKIP][485] ([i915#4423]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][486] ([i915#1825]) -> [SKIP][487] ([i915#14544] / [i915#1825]) +8 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-rkl: [SKIP][488] ([i915#15102]) -> [SKIP][489] ([i915#14544] / [i915#15102]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][490] ([i915#15102] / [i915#3458]) -> [SKIP][491] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][492] -> [SKIP][493] ([i915#14544]) +2 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#1825]) -> [SKIP][495] ([i915#1825]) +3 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg1: [SKIP][496] ([i915#4423]) -> [SKIP][497] [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][499] ([i915#15102] / [i915#3023]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][500] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][501] ([i915#15102] / [i915#3458]) +3 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-rkl: [SKIP][502] ([i915#15102] / [i915#3023]) -> [SKIP][503] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][504] ([i915#12713]) -> [SKIP][505] ([i915#1187] / [i915#12713]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][506] ([i915#15458]) -> [SKIP][507] ([i915#14544] / [i915#15458]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#14712]) -> [SKIP][509] ([i915#14712]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg1: [SKIP][510] ([i915#14712]) -> [SKIP][511] ([i915#14712] / [i915#4423]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-18/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#15709]) -> [SKIP][513] ([i915#15709]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping: - shard-rkl: [SKIP][514] ([i915#15709]) -> [SKIP][515] ([i915#14544] / [i915#15709]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: [SKIP][516] ([i915#5354]) -> [SKIP][517] ([i915#14544] / [i915#5354]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][518] ([i915#15128]) -> [FAIL][519] ([i915#15752]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][520] ([i915#15739]) -> [SKIP][521] ([i915#15128]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][522] ([i915#9340]) -> [SKIP][523] ([i915#3828]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][524] ([i915#11520] / [i915#14544]) -> [SKIP][525] ([i915#11520]) +1 other test skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-rkl: [SKIP][526] ([i915#11520]) -> [SKIP][527] ([i915#11520] / [i915#14544]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-cursor-blt: - shard-rkl: [SKIP][528] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][529] ([i915#1072] / [i915#9732]) +2 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-blt.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: [SKIP][530] ([i915#1072] / [i915#9732]) -> [SKIP][531] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-19/igt@kms_psr@fbc-psr-primary-render.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-dg1-19/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@psr-suspend: - shard-rkl: [SKIP][532] ([i915#1072] / [i915#9732]) -> [SKIP][533] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_psr@psr-suspend.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@kms_psr@psr-suspend.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][534] ([i915#2436]) -> [SKIP][535] ([i915#14544] / [i915#2436]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][537] ([i915#3291] / [i915#3708]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@prime_vgem@basic-fence-read.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][538] ([i915#9917]) -> [SKIP][539] ([i915#14544] / [i915#9917]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-on.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8819 -> IGTPW_14836 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18192: ad0e76efae0da3432314b19f2d56c93149fba7e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14836: 14836 IGT_8819: 8819 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14836/index.html [-- Attachment #2: Type: text/html, Size: 178685 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala ` (3 preceding siblings ...) 2026-03-24 2:52 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-03-24 15:19 ` Garg, Nemesa 2026-03-25 9:55 ` Karthik B S 5 siblings, 0 replies; 7+ messages in thread From: Garg, Nemesa @ 2026-03-24 15:19 UTC (permalink / raw) To: Samala, Pranay, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Lattannavar, Sameer, Samala, Pranay > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Pranay > Samala > Sent: Monday, March 23, 2026 7:41 PM > To: igt-dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; Lattannavar, Sameer > <sameer.lattannavar@intel.com>; Samala, Pranay > <pranay.samala@intel.com> > Subject: [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer > in joiner bypass > > When joiner mode is detected, the returned mode pointer from > igt_get_non_joiner_mode() points into connector-owned memory which can > become invalid after subsequent display state changes. > > Fix this by copying the mode into local variable for stable storage. Skip the > output if no non-joiner mode is found. > > Fixes: 10dccc7fc82f ("tests/intel/kms_sharpness_filter: Detect and bypass > joiner modes") > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/7045 > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/intel/kms_sharpness_filter.c | 13 +++++++++++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/kms_sharpness_filter.c > b/tests/intel/kms_sharpness_filter.c > index 96fb139ae..c2295c0ee 100644 > --- a/tests/intel/kms_sharpness_filter.c > +++ b/tests/intel/kms_sharpness_filter.c > @@ -430,6 +430,7 @@ run_sharpness_filter_test(data_t *data, enum > test_type type) > igt_display_t *display = &data->display; > igt_output_t *output; > igt_crtc_t *crtc; > + drmModeModeInfo *m, selected_mode; > char name[40]; > > for_each_connected_output(display, output) { @@ -438,7 +439,6 > @@ run_sharpness_filter_test(data_t *data, enum test_type type) > > data->output = output; > data->crtc = crtc; > - data->mode = igt_output_get_mode(data->output); > > /* > * FIXME: Joiner + CASF currently unsupported. > @@ -446,7 +446,15 @@ run_sharpness_filter_test(data_t *data, enum > test_type type) > * Until then, run on non-joiner mode in joiner > configuration. > */ > if (is_joiner_mode(data->drm_fd, data->output)) { > - data->mode = > igt_get_non_joiner_mode(data->drm_fd, data->output); > + m = igt_get_non_joiner_mode(data->drm_fd, > data->output); > + if (!m) { > + igt_info("No non-joiner mode found > on %s\n", > + igt_output_name(data- > >output)); > + continue; > + } > + > + selected_mode = *m; > + data->mode = &selected_mode; > igt_info("Executing on mode %dx%d@%d\n", > data->mode->hdisplay, > data->mode->vdisplay, > @@ -463,6 +471,7 @@ run_sharpness_filter_test(data_t *data, enum > test_type type) > > igt_output_set_crtc(data->output, > data->crtc); > + igt_output_override_mode(data->output, data- > >mode); > LGTM, Reviewed-by: Nemesa Garg <nemesa.garg@intel.com> > if (!intel_pipe_output_combo_valid(display)) { > igt_output_set_crtc(data->output, NULL); > -- > 2.34.1 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala ` (4 preceding siblings ...) 2026-03-24 15:19 ` [PATCH i-g-t] " Garg, Nemesa @ 2026-03-25 9:55 ` Karthik B S 5 siblings, 0 replies; 7+ messages in thread From: Karthik B S @ 2026-03-25 9:55 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar Hi Pranay, On 3/23/2026 7:41 PM, Pranay Samala wrote: > When joiner mode is detected, the returned mode pointer from > igt_get_non_joiner_mode() points into connector-owned memory > which can become invalid after subsequent display state changes. > > Fix this by copying the mode into local variable for stable > storage. Skip the output if no non-joiner mode is found. > > Fixes: 10dccc7fc82f ("tests/intel/kms_sharpness_filter: Detect and bypass joiner modes") > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/7045 > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/intel/kms_sharpness_filter.c | 13 +++++++++++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c > index 96fb139ae..c2295c0ee 100644 > --- a/tests/intel/kms_sharpness_filter.c > +++ b/tests/intel/kms_sharpness_filter.c > @@ -430,6 +430,7 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > igt_display_t *display = &data->display; > igt_output_t *output; > igt_crtc_t *crtc; > + drmModeModeInfo *m, selected_mode; > char name[40]; > > for_each_connected_output(display, output) { > @@ -438,7 +439,6 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > > data->output = output; > data->crtc = crtc; > - data->mode = igt_output_get_mode(data->output); > > /* > * FIXME: Joiner + CASF currently unsupported. > @@ -446,7 +446,15 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > * Until then, run on non-joiner mode in joiner configuration. > */ > if (is_joiner_mode(data->drm_fd, data->output)) { > - data->mode = igt_get_non_joiner_mode(data->drm_fd, data->output); > + m = igt_get_non_joiner_mode(data->drm_fd, data->output); > + if (!m) { > + igt_info("No non-joiner mode found on %s\n", > + igt_output_name(data->output)); > + continue; > + } > + > + selected_mode = *m; > + data->mode = &selected_mode; Instead of doing this, if we get the mode after setting the CRTC on the output and we should be getting the correct mode. Could you please check this. Thanks and Regards, Karthik.B.S > igt_info("Executing on mode %dx%d@%d\n", > data->mode->hdisplay, > data->mode->vdisplay, > @@ -463,6 +471,7 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > > igt_output_set_crtc(data->output, > data->crtc); > + igt_output_override_mode(data->output, data->mode); > > if (!intel_pipe_output_combo_valid(display)) { > igt_output_set_crtc(data->output, NULL); ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-25 9:55 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-23 14:11 [PATCH i-g-t] tests/intel/kms_sharpness_filter: Fix stale mode pointer in joiner bypass Pranay Samala 2026-03-23 16:55 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-03-23 17:21 ` ✓ i915.CI.BAT: " Patchwork 2026-03-24 0:21 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-24 2:52 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-24 15:19 ` [PATCH i-g-t] " Garg, Nemesa 2026-03-25 9:55 ` Karthik B S
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox