* [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes
@ 2026-04-08 18:11 Swati Sharma
2026-04-09 18:44 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Swati Sharma @ 2026-04-08 18:11 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma, Ankit Nautiyal
eDP panels may expose modes with the same resolution and pixel clock
but different vtotal. Since only the vblank region differs, the CDCLK
requirement remains identical across such modes, so no CDCLK bump is
expected.
Skip CDCLK bump validation on eDP connectors where modes share the
same hdisplay, vdisplay and clock but vary only in vtotal.
Suggested-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_cdclk.c | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c
index 20b8a5f0a..a015afa29 100644
--- a/tests/intel/kms_cdclk.c
+++ b/tests/intel/kms_cdclk.c
@@ -72,6 +72,24 @@ static bool hardware_supported(data_t *data)
return false;
}
+static bool edp_has_fixed_clock_modes(igt_output_t *output)
+{
+ drmModeConnector *connector = output->config.connector;
+
+ if (connector->connector_type != DRM_MODE_CONNECTOR_eDP)
+ return false;
+
+ for (int i = 0; i < connector->count_modes; i++)
+ for (int j = i + 1; j < connector->count_modes; j++)
+ if (connector->modes[i].hdisplay == connector->modes[j].hdisplay &&
+ connector->modes[i].vdisplay == connector->modes[j].vdisplay &&
+ connector->modes[i].clock == connector->modes[j].clock &&
+ connector->modes[i].vtotal != connector->modes[j].vtotal)
+ return true;
+
+ return false;
+}
+
static __u64 get_mode_data_rate(drmModeModeInfo *mode)
{
__u64 data_rate = (__u64)mode->hdisplay * (__u64)mode->vdisplay * (__u64)mode->vrefresh;
@@ -329,6 +347,20 @@ static void run_cdclk_test(data_t *data, uint32_t flags)
igt_crtc_t *crtc;
for_each_crtc_with_valid_output(display, crtc, output) {
+ /*
+ * eDP panels may expose modes with the same resolution and
+ * pixel clock but different vtotal. Since only the vblank
+ * region differs, the CDCLK requirement remains identical
+ * across such modes, so no CDCLK bump is expected and
+ * validating it would lead to false failures.
+ */
+ if ((flags & TEST_MODETRANSITION) &&
+ edp_has_fixed_clock_modes(output)) {
+ igt_info("Skipping %s: eDP has modes with same clock "
+ "but different vtotal\n", output->name);
+ continue;
+ }
+
igt_output_set_crtc(output,
crtc);
if (!intel_pipe_output_combo_valid(display)) {
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes 2026-04-08 18:11 [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes Swati Sharma @ 2026-04-09 18:44 ` Patchwork 2026-04-09 19:02 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-04-09 18:44 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1719 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes URL : https://patchwork.freedesktop.org/series/164564/ State : success == Summary == CI Bug Log - changes from XEIGT_8852_BAT -> XEIGTPW_14945_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14945_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_waitfence@abstime: - bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-dg2-oem2/igt@xe_waitfence@abstime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/bat-dg2-oem2/igt@xe_waitfence@abstime.html #### Possible fixes #### * igt@xe_waitfence@reltime: - bat-dg2-oem2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-dg2-oem2/igt@xe_waitfence@reltime.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/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_8852 -> IGTPW_14945 IGTPW_14945: 14945 IGT_8852: 8852 xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/index.html [-- Attachment #2: Type: text/html, Size: 2303 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes 2026-04-08 18:11 [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes Swati Sharma 2026-04-09 18:44 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-04-09 19:02 ` Patchwork 2026-04-09 19:45 ` ✓ Xe.CI.FULL: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-04-09 19:02 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2143 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes URL : https://patchwork.freedesktop.org/series/164564/ State : success == Summary == CI Bug Log - changes from IGT_8852 -> IGTPW_14945 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14945 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/bat-mtlp-8/igt@i915_selftest@live.html #### Possible fixes #### * igt@i915_selftest@live: - bat-dg2-8: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-dg2-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-arls-5/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/bat-arls-5/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_8852 -> IGTPW_14945 CI-20190529: 20190529 CI_DRM_18303: 7fa61e7003dda66c77b7f63a555658d8fb10bacf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14945: 14945 IGT_8852: 8852 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/index.html [-- Attachment #2: Type: text/html, Size: 2947 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes 2026-04-08 18:11 [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes Swati Sharma 2026-04-09 18:44 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-04-09 19:02 ` ✓ i915.CI.BAT: " Patchwork @ 2026-04-09 19:45 ` Patchwork 2026-04-10 10:25 ` ✗ i915.CI.Full: failure " Patchwork 2026-04-10 10:45 ` [PATCH i-g-t, v2] " Ville Syrjälä 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-04-09 19:45 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16600 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes URL : https://patchwork.freedesktop.org/series/164564/ State : success == Summary == CI Bug Log - changes from XEIGT_8852_FULL -> XEIGTPW_14945_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14945_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#1124]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2328] / [Intel XE#7367]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7679]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2887]) +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-4/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2252]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2320]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#4354] / [Intel XE#7386]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7178] / [Intel XE#7351]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#4141]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2311]) +8 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2313]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7130]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#7340]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1489]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-10/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3904] / [Intel XE#7342]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_vblank@wait-idle-hang@pipe-a-dp-2: - shard-bmg: [PASS][18] -> [ABORT][19] ([Intel XE#5545] / [Intel XE#6652] / [Intel XE#7200]) +1 other test abort [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-7/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-2/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#4459]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2168] / [Intel XE#7444]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-3/igt@kms_vrr@lobf.html * igt@xe_eudebug@basic-exec-queues: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7636]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7140]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@multigpu-no-exec-null: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2322] / [Intel XE#7372]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-null.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7136]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6874]) +9 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html * igt@xe_exec_system_allocator@process-many-execqueues-mmap-file: - shard-bmg: [PASS][28] -> [ABORT][29] ([Intel XE#5545] / [Intel XE#6652]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-mmap-file.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-2/igt@xe_exec_system_allocator@process-many-execqueues-mmap-file.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7138]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4733] / [Intel XE#7417]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#5937]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html #### Possible fixes #### * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][34] ([Intel XE#5354]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [FAIL][36] ([Intel XE#3149]) -> [PASS][37] +1 other test pass [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][38] -> [PASS][39] +4 other tests pass [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][40] ([Intel XE#301]) -> [PASS][41] +1 other test pass [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][42] ([Intel XE#1503]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-2/igt@kms_hdr@invalid-hdr.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-8/igt@kms_hdr@invalid-hdr.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][44] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][45] +3 other tests pass [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-8/igt@kms_vrr@flip-basic.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-lnl-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][46] ([Intel XE#2142]) -> [PASS][47] +1 other test pass [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck: - shard-bmg: [DMESG-WARN][48] -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-bmg: [FAIL][50] ([Intel XE#5937]) -> [PASS][51] +2 other tests pass [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][52] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][53] ([Intel XE#1729] / [Intel XE#7424]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [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#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [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#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 Build changes ------------- * IGT: IGT_8852 -> IGTPW_14945 IGTPW_14945: 14945 IGT_8852: 8852 xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14945/index.html [-- Attachment #2: Type: text/html, Size: 18126 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes 2026-04-08 18:11 [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes Swati Sharma ` (2 preceding siblings ...) 2026-04-09 19:45 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-04-10 10:25 ` Patchwork 2026-04-10 10:45 ` [PATCH i-g-t, v2] " Ville Syrjälä 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-04-10 10:25 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 148966 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes URL : https://patchwork.freedesktop.org/series/164564/ State : failure == Summary == CI Bug Log - changes from IGT_8852_full -> IGTPW_14945_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14945_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14945_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_14945/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_14945_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@create-clear: - shard-tglu: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-2/igt@gem_create@create-clear.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-6/igt@gem_create@create-clear.html * igt@gem_create@create-clear@smem0: - shard-rkl: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@gem_create@create-clear@smem0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@gem_create@create-clear@smem0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-mtlp: [PASS][5] -> [INCOMPLETE][6] +3 other tests incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-edp1: - shard-mtlp: [PASS][7] -> [FAIL][8] +20 other tests fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-1/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-edp1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-edp1.html * igt@perf@polling@0-rcs0: - shard-mtlp: [PASS][9] -> [DMESG-FAIL][10] +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-7/igt@perf@polling@0-rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@perf@polling@0-rcs0.html * igt@perf@polling@1-vcs1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@perf@polling@1-vcs1.html #### Warnings #### * igt@kms_pm_rpm@cursor: - shard-mtlp: [SKIP][12] ([i915#4077]) -> [FAIL][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-6/igt@kms_pm_rpm@cursor.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_pm_rpm@cursor.html Known issues ------------ Here are the changes found in IGTPW_14945_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8411]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#15678]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3281]) +8 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-6/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#13008]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#13008]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@gem_ccs@large-ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#13008]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-10/igt@gem_ccs@large-ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][24] ([i915#13356]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#12392] / [i915#13356]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-clear@smem0: - shard-tglu: [PASS][30] -> [INCOMPLETE][31] ([i915#5493]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-2/igt@gem_create@create-clear@smem0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-6/igt@gem_create@create-clear@smem0.html - shard-mtlp: [PASS][32] -> [INCOMPLETE][33] ([i915#5493]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-1/igt@gem_create@create-clear@smem0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@gem_create@create-clear@smem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#6335]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#6335]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#6335]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][37] -> [INCOMPLETE][38] ([i915#13356]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@gem_ctx_isolation@preservation-s3.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#8555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#280]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4771]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4771]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4525]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_exec_balancer@parallel.html - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4525]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#4525]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4525]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][51] ([i915#11965]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible: - shard-glk10: NOTRUN -> [SKIP][52] ([i915#6334]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#6344]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][54] ([i915#11965]) +4 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][55] ([i915#11965]) +2 other tests fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3539] / [i915#4852]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +12 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +11 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +12 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html - shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#3281]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4537] / [i915#4812]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4812]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4537] / [i915#4812]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][66] ([i915#13196] / [i915#13356]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk1/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4860]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#2190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][69] ([i915#2190]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-7/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][72] ([i915#4613]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-19/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4083]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-glk11: NOTRUN -> [WARN][79] ([i915#2658]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk11/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][80] ([i915#14702] / [i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@gem_pwrite@basic-random.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@gem_pwrite@basic-random.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#3323]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282] / [i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@gem_userptr_blits@forbidden-operations.html - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-7/igt@gen9_exec_parse@allowed-all.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#14544] / [i915#2527]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#2856]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-5/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#14073]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#14073]) +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#14073]) +15 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#14118]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-hang-all.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#14118]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#14118]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#15365]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-7/igt@i915_pm_rps@waitboost.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-6/igt@i915_pm_rps@waitboost.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6245]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@i915_query@hwconfig_table.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#6245]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#6245]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@workarounds: - shard-dg2: [PASS][120] -> [DMESG-FAIL][121] ([i915#12061]) +1 other test dmesg-fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-6/igt@i915_selftest@live@workarounds.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [PASS][122] -> [DMESG-WARN][123] ([i915#4391] / [i915#4423]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#4817]) +2 other tests incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk1/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][125] -> [INCOMPLETE][126] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@i915_suspend@fence-restore-untiled.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@sysfs-reader: - shard-glk: [PASS][127] -> [INCOMPLETE][128] ([i915#4817]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-glk9/igt@i915_suspend@sysfs-reader.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk5/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#7707]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4212]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4212]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][133] -> [INCOMPLETE][134] ([i915#12761]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][135] ([i915#12761]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#9531]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][137] ([i915#1769]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/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@pipe-a-edp-1: - shard-mtlp: [PASS][140] -> [FAIL][141] ([i915#5956]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#5286]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-10/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][143] +11 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5286]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5286]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#5286]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3638]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3638]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3828]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3828]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3828]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5190]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6187]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#4538]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][156] +12 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#14544]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][159] +204 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#12313]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][164] +90 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#6095]) +69 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#14544] / [i915#6095]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#12313]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#12313]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#6095]) +38 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][171] +434 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#6095]) +44 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#12805]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#12805] / [i915#14544]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#15582]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#14098] / [i915#6095]) +53 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#6095]) +213 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#6095]) +75 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#6095]) +83 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6095]) +29 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3742]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#14544] / [i915#7828]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][183] +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#12655] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#15865]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_content_protection@atomic-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#15865]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#15330] / [i915#3299]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#15330]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#15330]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#15330]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#15330]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#15330]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#15330]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#15865]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#15865]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#15865]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#15865]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#13049]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#13049]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#13049]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][207] -> [FAIL][208] ([i915#13566]) +1 other test fail [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [PASS][209] -> [FAIL][210] ([i915#13566]) +3 other tests fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3555]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8814]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#13049]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][217] ([i915#13049]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#13049]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#8814]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3555]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#13046] / [i915#5354]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#9809]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][223] +45 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#4103]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic: - shard-dg1: [PASS][225] -> [DMESG-WARN][226] ([i915#4423]) +1 other test dmesg-warn [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-15/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][227] ([i915#15804]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9723]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#9723]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#1769] / [i915#3555] / [i915#3804]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#3804]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#13749]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#13749]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@kms_dp_link_training@non-uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#13749]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#13749]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_dp_link_training@uhbr-mst.html - shard-dg2: NOTRUN -> [SKIP][236] ([i915#13748]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@kms_dp_link_training@uhbr-mst.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#13748]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#13748]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_dp_link_training@uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][239] ([i915#13748]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-2/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#13748]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#13707]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#13707]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#13707]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#13707]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#13707]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3840]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#3840]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#3840]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#3840]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#3840]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][252] -> [FAIL][253] ([i915#4767]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3955]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#3469]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3469]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#1839]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9337]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#658]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#658]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#658]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#9934]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3637] / [i915#9934]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3637] / [i915#9934]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#9934]) +9 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-rkl: NOTRUN -> [SKIP][267] ([i915#9934]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9934]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#3637] / [i915#9934]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [PASS][270] -> [FAIL][271] ([i915#13027]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][272] ([i915#13027]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk10: NOTRUN -> [INCOMPLETE][273] ([i915#12745] / [i915#4839]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk10: NOTRUN -> [INCOMPLETE][274] ([i915#12745]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15643]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#15643] / [i915#5190]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8810] / [i915#8813]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8810] / [i915#8813]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#15643]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#15643]) +6 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#15643]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15643]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15643]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][284] -> [SKIP][285] ([i915#15672]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#15104]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#15104]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15104]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][289] +34 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][290] +20 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#5354]) +24 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15102]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#15102]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544] / [i915#1825]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][295] +153 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#15102] / [i915#3458]) +10 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#15102] / [i915#3023]) +23 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#10055]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#10055]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#15102]) +14 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15102]) +6 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#14544] / [i915#15102]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#15102]) +19 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#15102] / [i915#3458]) +17 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#1825]) +34 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#1825]) +10 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#8708]) +17 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8708]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#8708]) +10 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#13030]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html - shard-mtlp: [PASS][312] -> [SKIP][313] ([i915#15725]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#15459]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-7/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#13688]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#13688]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_joiner@basic-max-non-joiner.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#13688]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#13688]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#13688]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#15458]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#15815]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#15815]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#6301]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#6301]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][328] -> [ABORT][329] ([i915#15132]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][330] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [ABORT][331] ([i915#15132]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#15709]) +5 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#15709]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#15709]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#15608]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#15709]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#15709]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#15608]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#15608]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#15709]) +3 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][341] ([i915#10647] / [i915#12169]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][342] ([i915#10647]) +1 other test fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk11: NOTRUN -> [FAIL][343] ([i915#10647] / [i915#12177]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][344] ([i915#10647]) +1 other test fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#11614] / [i915#3582]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#13958]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][348] ([i915#13958]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#14259]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][350] ([i915#14259]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][351] ([i915#14259]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#14259]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][353] ([i915#14259]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#15329]) +4 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html - shard-tglu: NOTRUN -> [SKIP][355] ([i915#15329]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#15329] / [i915#3555] / [i915#6953]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#15329]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#9812]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#5354]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_pm_backlight@fade-with-suspend.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9812]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9685]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#15751]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#9340]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#8430]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4077]) +4 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-3/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][366] -> [SKIP][367] ([i915#15073]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#15073]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#15073]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#15073]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#15073]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#15073]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@package-g7: - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#15403]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@kms_pm_rpm@package-g7.html - shard-dg2: NOTRUN -> [SKIP][374] ([i915#15403]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_pm_rpm@package-g7.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#15403]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_pm_rpm@package-g7.html - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#15403]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_pm_rpm@package-g7.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#15403]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-16/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][378] ([i915#10553]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html - shard-rkl: [PASS][379] -> [INCOMPLETE][380] ([i915#14419]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][381] ([i915#11520]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-snb1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#12316]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][383] ([i915#11520]) +14 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#11520]) +4 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][385] ([i915#11520]) +3 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][386] ([i915#11520]) +2 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#11520]) +6 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][388] ([i915#11520]) +2 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk11/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#11520] / [i915#14544]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#11520]) +5 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][391] ([i915#11520]) +3 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#9683]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +20 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#9732]) +13 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][396] ([i915#9688]) +10 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +12 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +22 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][399] ([i915#9732]) +17 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][400] ([i915#15492]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][401] ([i915#5289]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][402] ([i915#5289]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][403] ([i915#5289]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][404] ([i915#12755] / [i915#15867]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#12755] / [i915#15867]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][406] ([i915#8623]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][407] ([i915#10959]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][408] ([i915#8623]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][409] ([i915#12276]) +1 other test incomplete [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk2/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-dpms: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#15243] / [i915#3555]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_vrr@flip-dpms.html - shard-rkl: NOTRUN -> [SKIP][411] ([i915#15243] / [i915#3555]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_vrr@flip-dpms.html - shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3555] / [i915#8808]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][413] ([i915#9906]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#3555] / [i915#9906]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-3/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][415] ([i915#9906]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][416] ([i915#7387]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-1/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][417] ([i915#7387]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][418] ([i915#2434]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][419] ([i915#2434]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][420] ([i915#2434]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-17/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][421] ([i915#2434]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-4/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][422] ([i915#2433]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [PASS][423] -> [FAIL][424] ([i915#15453]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@module-unload: - shard-rkl: NOTRUN -> [ABORT][425] ([i915#15778]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][426] ([i915#13356]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk11/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][427] -> [FAIL][428] ([i915#4349]) +1 other test fail [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][429] ([i915#3291] / [i915#3708]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][430] ([i915#3708]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][431] ([i915#3708]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][432] ([i915#9917]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-8/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][433] ([i915#9917]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-dg2: [ABORT][434] ([i915#7975]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-10/igt@gem_eio@hibernate.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [INCOMPLETE][436] ([i915#13356]) -> [PASS][437] +1 other test pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html * igt@gem_exec_suspend@basic-s3-devices: - shard-dg1: [DMESG-WARN][438] ([i915#4423]) -> [PASS][439] +4 other tests pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-12/igt@gem_exec_suspend@basic-s3-devices.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@gem_exec_suspend@basic-s3-devices.html * igt@gem_exec_suspend@basic-s4-devices: - shard-mtlp: [FAIL][440] ([i915#15762]) -> [PASS][441] +1 other test pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-8/igt@gem_exec_suspend@basic-s4-devices.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-8/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [ABORT][442] ([i915#15131]) -> [PASS][443] [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][444] ([i915#13809]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-glk4/igt@gem_softpin@noreloc-s3.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk4/igt@gem_softpin@noreloc-s3.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][446] ([i915#13029] / [i915#14545]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-13/igt@i915_module_load@reload-no-display.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@i915_module_load@reload-no-display.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][448] ([i915#15582]) -> [PASS][449] [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][450] ([i915#13566]) -> [PASS][451] +1 other test pass [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@modeset-vs-vblank-race: - shard-tglu: [FAIL][452] ([i915#10826]) -> [PASS][453] [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1: - shard-tglu: [FAIL][454] -> [PASS][455] +2 other tests pass [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-3/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][456] ([i915#14412]) -> [PASS][457] +1 other test pass [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_cursor@overlay: - shard-rkl: [FAIL][458] ([i915#15912]) -> [PASS][459] [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-3/igt@kms_plane_cursor@overlay.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_plane_cursor@overlay.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][460] ([i915#15073]) -> [PASS][461] +1 other test pass [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][462] ([i915#15073]) -> [PASS][463] +1 other test pass [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg1: [SKIP][464] ([i915#15073]) -> [PASS][465] +1 other test pass [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-dg1: [DMESG-WARN][466] ([i915#4391] / [i915#4423]) -> [PASS][467] [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-18/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-12/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][468] ([i915#15106]) -> [PASS][469] +2 other tests pass [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-tglu-6/igt@kms_setmode@basic.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-tglu-8/igt@kms_setmode@basic.html - shard-mtlp: [FAIL][470] ([i915#15106]) -> [PASS][471] +1 other test pass [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-3/igt@kms_setmode@basic.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-2/igt@kms_setmode@basic.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [INCOMPLETE][472] ([i915#12276]) -> [PASS][473] +1 other test pass [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-double-start: - shard-dg1: [FAIL][474] ([i915#4349]) -> [PASS][475] +1 other test pass [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-17/igt@perf_pmu@busy-double-start.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@perf_pmu@busy-double-start.html #### Warnings #### * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#6230]) -> [SKIP][477] ([i915#6230]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@api_intel_bb@crc32.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@api_intel_bb@crc32.html * igt@drm_buddy@drm_buddy: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#15678]) -> [SKIP][479] ([i915#15678]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@drm_buddy@drm_buddy.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@drm_buddy@drm_buddy.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#8562]) -> [SKIP][481] ([i915#8562]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@gem_create@create-ext-set-pat.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][482] ([i915#280]) -> [SKIP][483] ([i915#14544] / [i915#280]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-3/igt@gem_ctx_sseu@engines.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#6334]) -> [SKIP][485] ([i915#6334]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][486] ([i915#3281]) -> [SKIP][487] ([i915#14544] / [i915#3281]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#3281]) -> [SKIP][489] ([i915#3281]) +3 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: [SKIP][490] ([i915#4613]) -> [SKIP][491] ([i915#14544] / [i915#4613]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#3282]) -> [SKIP][493] ([i915#3282]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@bench: - shard-rkl: [SKIP][494] ([i915#3282]) -> [SKIP][495] ([i915#14544] / [i915#3282]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-7/igt@gem_pread@bench.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_pread@bench.html * igt@gem_softpin@evict-snoop: - shard-rkl: [SKIP][496] -> [SKIP][497] ([i915#14544]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-7/igt@gem_softpin@evict-snoop.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#3297]) -> [SKIP][499] ([i915#3297]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#2527]) -> [SKIP][501] ([i915#2527]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][502] ([i915#2527]) -> [SKIP][503] ([i915#14544] / [i915#2527]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][504] ([i915#8399]) -> [SKIP][505] ([i915#14544] / [i915#8399]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: [SKIP][506] ([i915#14544]) -> [SKIP][507] +4 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#5286]) -> [SKIP][509] ([i915#5286]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][510] ([i915#5286]) -> [SKIP][511] ([i915#14544] / [i915#5286]) +2 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: [SKIP][512] ([i915#4538] / [i915#5286]) -> [SKIP][513] ([i915#4423] / [i915#4538] / [i915#5286]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#3638]) -> [SKIP][515] ([i915#3638]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-dg1: [SKIP][516] ([i915#3638] / [i915#4423]) -> [SKIP][517] ([i915#3638]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][518] ([i915#6095]) -> [SKIP][519] ([i915#14544] / [i915#6095]) +2 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#6095]) -> [SKIP][521] ([i915#6095]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][522] ([i915#14098] / [i915#6095]) -> [SKIP][523] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][524] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][525] ([i915#14098] / [i915#6095]) +3 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg1: [SKIP][526] ([i915#11151] / [i915#7828]) -> [SKIP][527] ([i915#11151] / [i915#4423] / [i915#7828]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-16/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: [SKIP][528] ([i915#11151] / [i915#7828]) -> [SKIP][529] ([i915#11151] / [i915#14544] / [i915#7828]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@kms_chamelium_frames@hdmi-frame-dump.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-rkl: [SKIP][530] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][531] ([i915#11151] / [i915#7828]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][532] ([i915#15865]) -> [SKIP][533] ([i915#14544] / [i915#15865]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@kms_content_protection@content-type-change.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][534] ([i915#15330] / [i915#3116]) -> [SKIP][535] ([i915#14544] / [i915#15330] / [i915#3116]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#15330]) -> [SKIP][537] ([i915#15330]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][538] ([i915#9433]) -> [SKIP][539] ([i915#15865]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-12/igt@kms_content_protection@mei-interface.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#3555]) -> [SKIP][541] ([i915#3555]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][542] ([i915#3555]) -> [SKIP][543] ([i915#14544] / [i915#3555]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-1/igt@kms_cursor_crc@cursor-random-32x10.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][544] ([i915#13049] / [i915#14544]) -> [SKIP][545] ([i915#13049]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: [SKIP][546] ([i915#3555] / [i915#3840]) -> [SKIP][547] ([i915#14544] / [i915#3555] / [i915#3840]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][549] ([i915#3555] / [i915#3840]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: [SKIP][550] ([i915#14544] / [i915#9934]) -> [SKIP][551] ([i915#9934]) +1 other test skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html - shard-dg1: [SKIP][552] ([i915#9934]) -> [SKIP][553] ([i915#4423] / [i915#9934]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-19/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-13/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-rkl: [SKIP][554] ([i915#9934]) -> [SKIP][555] ([i915#14544] / [i915#9934]) +2 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@kms_flip@2x-plain-flip.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][556] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][557] ([i915#12745] / [i915#4839]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-glk1/igt@kms_flip@flip-vs-suspend.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][558] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][559] ([i915#12745]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: [SKIP][560] ([i915#14544] / [i915#15643]) -> [SKIP][561] ([i915#15643]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-rkl: [SKIP][562] ([i915#15643]) -> [SKIP][563] ([i915#14544] / [i915#15643]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: [SKIP][564] ([i915#15672]) -> [SKIP][565] [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-mtlp-3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite: - shard-rkl: [SKIP][566] ([i915#1825]) -> [SKIP][567] ([i915#14544] / [i915#1825]) +6 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][568] ([i915#5439]) -> [SKIP][569] ([i915#14544] / [i915#5439]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-rkl: [SKIP][570] ([i915#14544] / [i915#15102]) -> [SKIP][571] ([i915#15102]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][572] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][573] ([i915#15102] / [i915#3023]) +3 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][574] ([i915#15102] / [i915#3458]) -> [SKIP][575] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: [SKIP][576] -> [SKIP][577] ([i915#4423]) +1 other test skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: [SKIP][578] ([i915#14544] / [i915#1825]) -> [SKIP][579] ([i915#1825]) +6 other tests skip [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#5439]) -> [SKIP][581] ([i915#5439]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: [SKIP][582] ([i915#4423]) -> [SKIP][583] [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-rkl: [SKIP][584] ([i915#15102] / [i915#3023]) -> [SKIP][585] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][586] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][587] ([i915#15102] / [i915#3458]) +2 other tests skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][588] ([i915#14544] / [i915#6301]) -> [SKIP][589] ([i915#6301]) [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_panel_fitting@legacy.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][590] ([i915#15709]) -> [SKIP][591] ([i915#14544] / [i915#15709]) +2 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][592] ([i915#14544] / [i915#9685]) -> [SKIP][593] ([i915#9685]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][594] ([i915#11520] / [i915#14544]) -> [SKIP][595] ([i915#11520]) +1 other test skip [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][596] ([i915#11520]) -> [SKIP][597] ([i915#11520] / [i915#14544]) +1 other test skip [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg1: [SKIP][598] ([i915#11520] / [i915#4423]) -> [SKIP][599] ([i915#11520]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][600] ([i915#14544] / [i915#9683]) -> [SKIP][601] ([i915#9683]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][602] ([i915#9683]) -> [SKIP][603] ([i915#14544] / [i915#9683]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr-primary-page-flip: - shard-rkl: [SKIP][604] ([i915#1072] / [i915#9732]) -> [SKIP][605] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-3/igt@kms_psr@psr-primary-page-flip.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-6/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-rkl: [SKIP][606] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][607] ([i915#1072] / [i915#9732]) +1 other test skip [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-rkl-3/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@perf_pmu@module-unload: - shard-dg1: [ABORT][608] ([i915#13029] / [i915#15778]) -> [ABORT][609] ([i915#15778]) [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/shard-dg1-15/igt@perf_pmu@module-unload.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/shard-dg1-18/igt@perf_pmu@module-unload.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [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#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [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#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [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#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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [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#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [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#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [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#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [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_8852 -> IGTPW_14945 CI-20190529: 20190529 CI_DRM_18303: 7fa61e7003dda66c77b7f63a555658d8fb10bacf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14945: 14945 IGT_8852: 8852 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14945/index.html [-- Attachment #2: Type: text/html, Size: 198452 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes 2026-04-08 18:11 [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes Swati Sharma ` (3 preceding siblings ...) 2026-04-10 10:25 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-04-10 10:45 ` Ville Syrjälä 4 siblings, 0 replies; 6+ messages in thread From: Ville Syrjälä @ 2026-04-10 10:45 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev, Ankit Nautiyal On Wed, Apr 08, 2026 at 11:41:26PM +0530, Swati Sharma wrote: > eDP panels may expose modes with the same resolution and pixel clock > but different vtotal. Since only the vblank region differs, the CDCLK > requirement remains identical across such modes, so no CDCLK bump is > expected. > > Skip CDCLK bump validation on eDP connectors where modes share the > same hdisplay, vdisplay and clock but vary only in vtotal. > > Suggested-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_cdclk.c | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index 20b8a5f0a..a015afa29 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -72,6 +72,24 @@ static bool hardware_supported(data_t *data) > return false; > } > > +static bool edp_has_fixed_clock_modes(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + > + if (connector->connector_type != DRM_MODE_CONNECTOR_eDP) > + return false; > + > + for (int i = 0; i < connector->count_modes; i++) > + for (int j = i + 1; j < connector->count_modes; j++) > + if (connector->modes[i].hdisplay == connector->modes[j].hdisplay && > + connector->modes[i].vdisplay == connector->modes[j].vdisplay && > + connector->modes[i].clock == connector->modes[j].clock && > + connector->modes[i].vtotal != connector->modes[j].vtotal) > + return true; > + > + return false; > +} > + > static __u64 get_mode_data_rate(drmModeModeInfo *mode) > { > __u64 data_rate = (__u64)mode->hdisplay * (__u64)mode->vdisplay * (__u64)mode->vrefresh; > @@ -329,6 +347,20 @@ static void run_cdclk_test(data_t *data, uint32_t flags) > igt_crtc_t *crtc; > > for_each_crtc_with_valid_output(display, crtc, output) { > + /* > + * eDP panels may expose modes with the same resolution and > + * pixel clock but different vtotal. Since only the vblank > + * region differs, the CDCLK requirement remains identical > + * across such modes, so no CDCLK bump is expected and > + * validating it would lead to false failures. > + */ > + if ((flags & TEST_MODETRANSITION) && > + edp_has_fixed_clock_modes(output)) { > + igt_info("Skipping %s: eDP has modes with same clock " > + "but different vtotal\n", output->name); > + continue; > + } Seems overly complicated. Why aren't we just skipping if the highres and lowres modes have the same dotclock? > + > igt_output_set_crtc(output, > crtc); > if (!intel_pipe_output_combo_valid(display)) { > -- > 2.25.1 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-04-10 10:45 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-08 18:11 [PATCH i-g-t, v2] tests/intel/kms_cdclk: Skip CDCLK bump validation on eDP with fixed clock modes Swati Sharma 2026-04-09 18:44 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-04-09 19:02 ` ✓ i915.CI.BAT: " Patchwork 2026-04-09 19:45 ` ✓ Xe.CI.FULL: " Patchwork 2026-04-10 10:25 ` ✗ i915.CI.Full: failure " Patchwork 2026-04-10 10:45 ` [PATCH i-g-t, v2] " Ville Syrjälä
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox