* [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events
@ 2026-07-09 5:09 Jeevan B
2026-07-09 7:22 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jeevan B @ 2026-07-09 5:09 UTC (permalink / raw)
To: igt-dev; +Cc: dibin.moolakadan.subrahmanian, ramanaidu.naladala, Jeevan B
The DC3CO frame-drop test currently waits for a vblank after committing
a new framebuffer, which does not guarantee that the frame was actually
presented.
Switch to page flips and wait for the corresponding completion event,
which confirms that the frame reached scanout. The test now alternates
between two framebuffers using page flips, preserving the playback-like
cadence needed to exercise DC3CO entry/exit transitions.
Keep the existing vblank-gap validation, but derive the sequence number
from the completed page flip instead of an independently waited vblank.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_dc.c | 69 +++++++++++++++++++++++++++++++----------
1 file changed, 52 insertions(+), 17 deletions(-)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index ef53c5f96..da077a2dc 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -362,30 +362,60 @@ static void test_dc3co_vpb_simulation(data_t *data)
cleanup_dc3co_fbs(data);
}
-static uint32_t wait_for_next_vblank_seq(data_t *data)
+struct dc3co_flip {
+ bool done;
+ unsigned int seq;
+};
+
+static void dc3co_flip_handler(int fd, unsigned int seq, unsigned int tv_sec,
+ unsigned int tv_usec, void *user_data)
{
- drmVBlank wait = {};
- igt_crtc_t *crtc = data->output->pending_crtc;
+ struct dc3co_flip *flip = user_data;
- igt_assert_f(crtc, "No CRTC bound to output for vblank wait\n");
+ flip->seq = seq;
+ flip->done = true;
+}
- wait.request.type = kmstest_get_vbl_flag(crtc->crtc_index) |
- DRM_VBLANK_RELATIVE |
- DRM_VBLANK_NEXTONMISS;
- wait.request.sequence = 1;
- igt_assert_eq(drmWaitVBlank(data->drm_fd, &wait), 0);
+static unsigned int dc3co_flip_and_wait(data_t *data, uint32_t crtc_id,
+ uint32_t fb_id, int frame_time_us)
+{
+ drmEventContext evctx = {
+ .version = 2,
+ .page_flip_handler = dc3co_flip_handler,
+ };
+ struct dc3co_flip flip = {};
+ struct pollfd pfd = {
+ .fd = data->drm_fd,
+ .events = POLLIN,
+ };
+ int timeout_ms = (DC3CO_MAX_VBLANK_GAP + 2) * frame_time_us / 1000;
+
+ if (timeout_ms < 50)
+ timeout_ms = 50;
- return wait.reply.sequence;
+ igt_assert_eq(drmModePageFlip(data->drm_fd, crtc_id, fb_id,
+ DRM_MODE_PAGE_FLIP_EVENT, &flip), 0);
+
+ while (!flip.done) {
+ igt_assert_f(poll(&pfd, 1, timeout_ms) > 0,
+ "Frame dropped: no page flip completion within %d ms "
+ "during DC3CO entry/exit\n", timeout_ms);
+ igt_assert_eq(drmHandleEvent(data->drm_fd, &evctx), 0);
+ }
+
+ return flip.seq;
}
static void detect_dc3co_framedrop(data_t *data)
{
igt_plane_t *primary;
+ igt_crtc_t *crtc;
uint32_t dc3co_prev_cnt;
uint32_t dc3co_cur_cnt;
uint32_t prev_vblank_seq = 0;
uint32_t vblank_seq;
uint32_t vblank_gap;
+ int frame_time_us;
int delay;
int committed = 0;
bool dc3co_after_target = false;
@@ -393,25 +423,30 @@ static void detect_dc3co_framedrop(data_t *data)
igt_require_f(data->mode->vrefresh != 0, "Invalid vrefresh rate of 0\n");
+ crtc = data->output->pending_crtc;
+ igt_assert_f(crtc, "No CRTC bound to output\n");
+
primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
- igt_plane_set_fb(primary, NULL);
+
+ igt_plane_set_fb(primary, &data->fb_rgb);
igt_display_commit(&data->display);
dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO);
- delay = (int)(DC3CO_FRAME_DELAY_FACTOR * (1000000 / data->mode->vrefresh));
+ frame_time_us = 1000000 / data->mode->vrefresh;
+ delay = (int)(DC3CO_FRAME_DELAY_FACTOR * frame_time_us);
while (committed < DC3CO_VERIFY_COMMITS) {
front = !front;
- igt_plane_set_fb(primary, front ? &data->fb_rgr : &data->fb_rgb);
- igt_display_commit(&data->display);
-
- vblank_seq = wait_for_next_vblank_seq(data);
+ vblank_seq = dc3co_flip_and_wait(data, crtc->crtc_id,
+ front ? data->fb_rgr.fb_id :
+ data->fb_rgb.fb_id,
+ frame_time_us);
if (prev_vblank_seq) {
vblank_gap = vblank_seq - prev_vblank_seq;
igt_assert_f(igt_vblank_after(vblank_seq, prev_vblank_seq) &&
vblank_gap <= DC3CO_MAX_VBLANK_GAP,
- "Unexpected vblank gap %u after commit %d (prev=%u, cur=%u)\n",
+ "Frame drop: unexpected vblank gap %u after commit %d (prev=%u, cur=%u)\n",
vblank_gap, committed + 1, prev_vblank_seq, vblank_seq);
}
prev_vblank_seq = vblank_seq;
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/kms_pm_dc: Detect frame drops via page-flip events 2026-07-09 5:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events Jeevan B @ 2026-07-09 7:22 ` Patchwork 2026-07-09 7:55 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-09 7:22 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1081 bytes --] == Series Details == Series: tests/intel/kms_pm_dc: Detect frame drops via page-flip events URL : https://patchwork.freedesktop.org/series/170050/ State : success == Summary == CI Bug Log - changes from XEIGT_8994_BAT -> XEIGTPW_15495_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 12) ------------------------------ Missing (1): bat-bmg-2 Changes ------- No changes found Build changes ------------- * IGT: IGT_8994 -> IGTPW_15495 * Linux: xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d -> xe-5372-031615563ea8f1acce065bea91fe6ce6b0ce965c IGTPW_15495: 15495 IGT_8994: 59469572ae481848d6bd469242aef7c5333b39ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d: d2b771941e0c8aec7b6648b0c47d81161136944d xe-5372-031615563ea8f1acce065bea91fe6ce6b0ce965c: 031615563ea8f1acce065bea91fe6ce6b0ce965c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/index.html [-- Attachment #2: Type: text/html, Size: 1640 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_pm_dc: Detect frame drops via page-flip events 2026-07-09 5:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events Jeevan B 2026-07-09 7:22 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-07-09 7:55 ` Patchwork 2026-07-09 10:44 ` ✓ Xe.CI.FULL: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-09 7:55 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2556 bytes --] == Series Details == Series: tests/intel/kms_pm_dc: Detect frame drops via page-flip events URL : https://patchwork.freedesktop.org/series/170050/ State : success == Summary == CI Bug Log - changes from IGT_8994 -> IGTPW_15495 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15495 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [DMESG-WARN][1] ([i915#13735]) -> [PASS][2] +79 other tests pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8994/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_busy@basic@flip: - fi-kbl-7567u: [DMESG-WARN][3] ([i915#13735] / [i915#180]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8994/fi-kbl-7567u/igt@kms_busy@basic@flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/fi-kbl-7567u/igt@kms_busy@basic@flip.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [DMESG-WARN][5] ([i915#13735] / [i915#15673] / [i915#180]) -> [PASS][6] +52 other tests pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8994/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8994 -> IGTPW_15495 * Linux: CI_DRM_18787 -> CI_DRM_18791 CI-20190529: 20190529 CI_DRM_18787: d2b771941e0c8aec7b6648b0c47d81161136944d @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18791: 031615563ea8f1acce065bea91fe6ce6b0ce965c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15495: 15495 IGT_8994: 59469572ae481848d6bd469242aef7c5333b39ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/index.html [-- Attachment #2: Type: text/html, Size: 3443 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/kms_pm_dc: Detect frame drops via page-flip events 2026-07-09 5:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events Jeevan B 2026-07-09 7:22 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-07-09 7:55 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-09 10:44 ` Patchwork 2026-07-10 2:40 ` ✗ i915.CI.Full: failure " Patchwork 2026-07-20 5:19 ` [PATCH i-g-t] " Dibin Moolakadan Subrahmanian 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-09 10:44 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27157 bytes --] == Series Details == Series: tests/intel/kms_pm_dc: Detect frame drops via page-flip events URL : https://patchwork.freedesktop.org/series/170050/ State : success == Summary == CI Bug Log - changes from XEIGT_8994_FULL -> XEIGTPW_15495_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15495_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-10/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +4 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2652]) +8 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2887]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_chamelium_color@gamma: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2325] / [Intel XE#7358]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-9/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2252]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [FAIL][7] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-9/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2320]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-suspend: - shard-lnl: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#8341]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-3/igt@kms_cursor_crc@cursor-suspend.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-8/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#8265]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2373] / [Intel XE#7448]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-1/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#3098]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#301]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-lnl: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#8488]) +1 other test incomplete [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-1/igt@kms_flip@flip-vs-panning-vs-hang.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-2/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7351]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4141]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +19 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#6312]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7865]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2313]) +14 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1503]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-5/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4298] / [Intel XE#5873]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6911] / [Intel XE#7378]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7283]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1489]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#4608]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4608] / [Intel XE#7304]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr@psr2-basic: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@kms_psr@psr2-basic.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3904] / [Intel XE#7342]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2413]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6503]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-3/igt@kms_sharpness_filter@filter-tap.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6599]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-3/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_evict@evict-small: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#6540] / [Intel XE#688]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-1/igt@xe_evict@evict-small.html * igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7482]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-1/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html * igt@xe_exec_fault_mode@many-multi-queue-invalid-fault: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8374]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html * igt@xe_exec_multi_queue@max-queues-basic: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#8364]) +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-basic.html * igt@xe_exec_multi_queue@sanity: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#8364]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-8/igt@xe_exec_multi_queue@sanity.html * igt@xe_exec_reset@multi-queue-close-execqueues: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#8369]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-3/igt@xe_exec_reset@multi-queue-close-execqueues.html - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8369]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-1/igt@xe_exec_reset@multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#8378]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race.html * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8378]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [PASS][53] -> [ABORT][54] ([Intel XE#8007]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2833]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html * igt@xe_multigpu_svm@mgpu-coherency-fail-basic: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6964]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-5/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html * igt@xe_pat@l2-flush-opt-svm-pat-restrict: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7590]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-3/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1420] / [Intel XE#7590]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2284] / [Intel XE#7370]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@xe_pm@d3cold-basic.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#6569]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#6627] / [Intel XE#7419]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-1/igt@xe_survivability@runtime-survivability.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@xe_survivability@runtime-survivability.html * igt@xe_wedged@basic-wedged: - shard-lnl: [PASS][64] -> [ABORT][65] ([Intel XE#3119]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-8/igt@xe_wedged@basic-wedged.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-3/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][66] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][67] +1 other test pass [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][68] ([Intel XE#7571]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][70] ([Intel XE#301]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][72] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][73] +1 other test pass [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][74] ([Intel XE#8399]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][76] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_reset@long-spin-many-preempt-gt0-threads: - shard-bmg: [FAIL][78] ([Intel XE#7956]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-10/igt@xe_exec_reset@long-spin-many-preempt-gt0-threads.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-3/igt@xe_exec_reset@long-spin-many-preempt-gt0-threads.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [FAIL][80] ([Intel XE#6569]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sysfs_scheduler@preempt_timeout_us-min-max@ccs: - shard-lnl: [ABORT][82] ([Intel XE#8007]) -> [PASS][83] +1 other test pass [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-3/igt@xe_sysfs_scheduler@preempt_timeout_us-min-max@ccs.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-7/igt@xe_sysfs_scheduler@preempt_timeout_us-min-max@ccs.html #### Warnings #### * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-lnl: [SKIP][84] ([Intel XE#7178] / [Intel XE#7351]) -> [ABORT][85] ([Intel XE#8007]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][86] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][87] ([Intel XE#2426] / [Intel XE#5848]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8994/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119 [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#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [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#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7956]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7956 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8341 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8488 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 Build changes ------------- * IGT: IGT_8994 -> IGTPW_15495 * Linux: xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d -> xe-5372-031615563ea8f1acce065bea91fe6ce6b0ce965c IGTPW_15495: 15495 IGT_8994: 59469572ae481848d6bd469242aef7c5333b39ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d: d2b771941e0c8aec7b6648b0c47d81161136944d xe-5372-031615563ea8f1acce065bea91fe6ce6b0ce965c: 031615563ea8f1acce065bea91fe6ce6b0ce965c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15495/index.html [-- Attachment #2: Type: text/html, Size: 30136 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_pm_dc: Detect frame drops via page-flip events 2026-07-09 5:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events Jeevan B ` (2 preceding siblings ...) 2026-07-09 10:44 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-07-10 2:40 ` Patchwork 2026-07-20 5:19 ` [PATCH i-g-t] " Dibin Moolakadan Subrahmanian 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-10 2:40 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 143799 bytes --] == Series Details == Series: tests/intel/kms_pm_dc: Detect frame drops via page-flip events URL : https://patchwork.freedesktop.org/series/170050/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18791_full -> IGTPW_15495_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15495_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15495_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_15495/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_15495_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-rkl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-4/igt@gem_busy@close-race.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@gem_busy@close-race.html * igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4: - shard-dg1: [PASS][3] -> [FAIL][4] +4 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-17/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4.html New tests --------- New tests have been introduced between CI_DRM_18791_full and IGTPW_15495_full: ### New IGT tests (4) ### * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.55] s * igt@kms_rmfb@rmfb-ioctl@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.17] s * igt@kms_rmfb@rmfb-ioctl@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.22] s * igt@kms_rmfb@rmfb-ioctl@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [1.23] s Known issues ------------ Here are the changes found in IGTPW_15495_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#14544] / [i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-noreloc-keep-cache-simple: - shard-snb: NOTRUN -> [SKIP][6] +84 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-snb5/igt@api_intel_bb@object-noreloc-keep-cache-simple.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#15678]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@drm_buddy@drm_buddy.html - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#15678]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@drm_buddy@drm_buddy.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@gem_caching@reads.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-1/igt@gem_ccs@block-multicopy-inplace.html - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#14544] / [i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#13356] / [i915#16348]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [FAIL][20] ([i915#15454]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: [PASS][24] -> [INCOMPLETE][25] ([i915#13356] / [i915#16466]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-stop.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@gem_exec_balancer@parallel-keep-in-fence.html - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [FAIL][34] ([i915#15816]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@gem_exec_big@single.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#5107]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#3281]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613] / [i915#7582]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-19/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_wc@bad-size: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-13/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@coherency: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@gem_mmap_wc@coherency.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#3282]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_pread@self.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-16/igt@gem_pwrite@basic-random.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-3/igt@gem_pwrite@basic-random.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#13398]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4885]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4885]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_softpin@noreloc-s3: - shard-glk10: NOTRUN -> [INCOMPLETE][69] ([i915#13809] / [i915#16193]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk10/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@gen9_exec_parse@allowed-all.html - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@gen9_exec_parse@secure-batches.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#14123]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#11527]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@i915_drm_fdinfo@busy-check-all@ccs0.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#14118]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@fault-injection: - shard-mtlp: NOTRUN -> [ABORT][88] ([i915#15342] / [i915#15481]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-mtlp: NOTRUN -> [ABORT][89] ([i915#15481]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-mtlp: NOTRUN -> [DMESG-WARN][90] ([i915#15342]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@resize-bar: - shard-dg2: NOTRUN -> [DMESG-WARN][91] ([i915#14545]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@i915_module_load@resize-bar.html - shard-rkl: NOTRUN -> [SKIP][92] ([i915#6412]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#7178]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-16/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][94] ([i915#6412]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@i915_module_load@resize-bar.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#6412]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#14498]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#13356]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk6/igt@i915_pm_rpm@system-suspend.html - shard-rkl: NOTRUN -> [ABORT][98] ([i915#15060]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-1/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#11681]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#6245]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#16109]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#16109]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-4/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#16079]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#16182] / [i915#4817]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [PASS][105] -> [INCOMPLETE][106] ([i915#4817]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@i915_suspend@sysfs-reader.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#7707]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@intel_hwmon@hwmon-write.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#7707]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-4/igt@intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#7707]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#5286]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#5286]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#5286]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#3828]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][116] +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6187]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][120] +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14544] / [i915#6095]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +67 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#14098] / [i915#14544] / [i915#6095]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +55 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][125] +618 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#10434] / [i915#6095]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs: - shard-glk10: NOTRUN -> [SKIP][127] +37 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +166 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-glk11: NOTRUN -> [SKIP][130] +38 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#12805]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#6095]) +8 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +14 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#6095]) +44 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][135] -> [INCOMPLETE][136] ([i915#14694] / [i915#15582]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#6095]) +38 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#14694] / [i915#15582]) +1 other test incomplete [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk3/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-tglu-1: NOTRUN -> [SKIP][139] ([i915#6095]) +59 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#12313]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12313]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#12313]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#13783]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#11151]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-4/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#14544]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#16464] / [i915#16471]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-2/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#16471]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#16471]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#16471]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-14/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#16471]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-5/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#16471]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +7 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#14544] / [i915#7828]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#15865]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#15330] / [i915#3116] / [i915#3299]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#15865]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@suspend-resume: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#15865]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#15865]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#13049]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][168] ([i915#13049]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#13049]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][170] ([i915#13566]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8814]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3555]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-max-size.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-max-size.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8814]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][179] ([i915#15804]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#4103]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#9723]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#1769] / [i915#3555] / [i915#3804]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3804]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3804]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#13749]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#13707]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8812]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8812]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][189] ([i915#8812]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#16361]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#16361]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#16361]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_dsc@dsc-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#16361]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#16361]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#16361]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-bigjoiner: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#16361]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-bigjoiner.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#2065]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#16081]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3637] / [i915#9934]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637] / [i915#9934]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#9934]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8381]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12745] / [i915#4839]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][204] ([i915#12745]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9934]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3637] / [i915#9934]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-tglu-1: NOTRUN -> [FAIL][209] ([i915#13027]) +1 other test fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: NOTRUN -> [FAIL][210] ([i915#13027]) +1 other test fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#13027]) +1 other test fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8381]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk11: NOTRUN -> [INCOMPLETE][213] ([i915#12745] / [i915#4839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk11: NOTRUN -> [INCOMPLETE][214] ([i915#12745]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: [PASS][215] -> [INCOMPLETE][216] ([i915#16276] / [i915#6113]) +1 other test incomplete [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15643]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][218] ([i915#15643]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#15643]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#15643]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#15643]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#15643]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#15643]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15643] / [i915#5190]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#15104] / [i915#15990]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15991] / [i915#5354]) +16 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#15991] / [i915#1825]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][228] +71 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#10056]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#15990]) +14 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#15989]) +9 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#15989]) +6 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][233] +65 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][234] +74 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#5439]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#15990] / [i915#8708]) +6 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15104] / [i915#15990]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#15104] / [i915#15990]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#15102] / [i915#3023]) +10 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#15102]) +9 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15990] / [i915#8708]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#15102]) +33 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#15990]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#14544] / [i915#15102]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#15990]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#15102]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15989]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-glk: [PASS][248] -> [SKIP][249] +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk9/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#15989]) +14 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][251] +22 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#15989]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-rkl: [PASS][253] -> [SKIP][254] ([i915#15989]) +12 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15989]) +14 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#15989]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#9766]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#15990] / [i915#8708]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#1825]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#15102]) +35 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#15102]) +17 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15991]) +18 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15991]) +24 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][266] -> [SKIP][267] ([i915#15725]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-8/igt@kms_hdmi_inject@inject-audio.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#1187] / [i915#12713]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#13688]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#16451]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#15815]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#6301]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#13409] / [i915#13476]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#16386]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#15709]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#15709]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#16386]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#16386]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#16386]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15709]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#15709]) +5 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#15709]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#13026]) +1 other test incomplete [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][286] ([i915#12178]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#7862]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12169]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][289] ([i915#10647]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#13958]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-y.html - shard-tglu: NOTRUN -> [SKIP][291] ([i915#13958]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#13958]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#14259]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-8/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#14259]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#6953]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#15329]) +6 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#15329] / [i915#3555]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#15329]) +9 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15329] / [i915#6953]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15329]) +11 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#15751]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [FAIL][303] ([i915#16479]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#3361]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][305] ([i915#16479]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#15948]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#15073]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][308] -> [SKIP][309] ([i915#15073]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][310] -> [DMESG-WARN][311] ([i915#4423]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-12/igt@kms_pm_rpm@i2c.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-16/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][312] -> [SKIP][313] ([i915#15073]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#15073]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk11: NOTRUN -> [INCOMPLETE][315] ([i915#10553]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk11/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#6524]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#11520] / [i915#14544]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#11520]) +3 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][319] ([i915#11520]) +12 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][320] ([i915#11520]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#11520]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][322] ([i915#11520]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][323] ([i915#11520]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-snb4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#11520]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-16/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#11520]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12316]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9683]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#9732]) +12 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +11 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9688]) +7 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +15 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9732]) +13 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][335] ([i915#15492] / [i915#16184]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk4/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk11: NOTRUN -> [INCOMPLETE][336] ([i915#15492] / [i915#16184]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#5289]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#5289]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#3555]) +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][340] ([i915#13179]) +1 other test abort [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-4/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][341] ([i915#13179]) +1 other test abort [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][342] ([i915#10959]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][343] ([i915#8623]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][344] -> [INCOMPLETE][345] ([i915#12276]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#15243] / [i915#3555]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_vrr@flip-basic.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3555]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-15/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#9906]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#8808] / [i915#9906]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: [PASS][352] -> [FAIL][353] ([i915#10538]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-4/igt@perf@gen12-group-concurrent-oa-buffer-read.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][354] -> [FAIL][355] ([i915#4349]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-glk11: NOTRUN -> [ABORT][356] ([i915#15778]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk11/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [PASS][357] -> [INCOMPLETE][358] ([i915#13520]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@perf_pmu@rc6-suspend.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: NOTRUN -> [FAIL][359] ([i915#4349]) +4 other tests fail [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle.html * igt@prime_udl@share-import-addfb: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#16420]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-2/igt@prime_udl@share-import-addfb.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#16420]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@prime_udl@share-import-addfb.html - shard-rkl: NOTRUN -> [SKIP][362] ([i915#16420]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@prime_udl@share-import-addfb.html - shard-dg1: NOTRUN -> [SKIP][363] ([i915#16420]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#16066]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][366] ([i915#13356] / [i915#16348]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][368] ([i915#9561]) -> [PASS][369] +1 other test pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][370] ([i915#13390]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@gem_eio@in-flight-suspend.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][372] ([i915#13356]) -> [PASS][373] +1 other test pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][374] ([i915#12964]) -> [PASS][375] +1 other test pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@gem-execbuf-stress: - shard-dg1: [DMESG-WARN][376] ([i915#4423]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-14/igt@i915_pm_rpm@gem-execbuf-stress.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][378] ([i915#7984]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-2/igt@i915_power@sanity.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-4/igt@i915_power@sanity.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][380] ([i915#4817]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_3d@basic: - shard-mtlp: [SKIP][382] ([i915#15726]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-1/igt@kms_3d@basic.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-8/igt@kms_3d@basic.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][384] ([i915#12761]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][386] ([i915#13566]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][388] ([i915#13566]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1: - shard-mtlp: [FAIL][390] ([i915#13566] / [i915#15733]) -> [PASS][391] +2 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [FAIL][392] ([i915#4767]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-18/igt@kms_fbcon_fbt@fbc-suspend.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-15/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: [FAIL][394] ([i915#14600]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-glk: [SKIP][396] -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-glk2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render: - shard-rkl: [SKIP][398] ([i915#15989]) -> [PASS][399] +11 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][400] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][402] ([i915#15073]) -> [PASS][403] +2 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][404] ([i915#15073]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][406] ([i915#14544] / [i915#15073]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][408] ([i915#15073]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [INCOMPLETE][410] ([i915#14419]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg2: [ABORT][412] ([i915#15132]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-10/igt@kms_vblank@ts-continuation-dpms-suspend.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@kms_vblank@ts-continuation-dpms-suspend.html - shard-rkl: [ABORT][414] ([i915#15132]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-suspend.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@perf_pmu@rc6-suspend: - shard-dg2: [FAIL][416] ([i915#16544]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-7/igt@perf_pmu@rc6-suspend.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-mtlp: [FAIL][418] ([i915#4349]) -> [PASS][419] +4 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-4/igt@perf_pmu@semaphore-busy@vcs1.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][420] ([i915#4349]) -> [PASS][421] +5 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-7/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#3281]) -> [SKIP][423] ([i915#3281]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][424] ([i915#280]) -> [SKIP][425] ([i915#14544] / [i915#280]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][426] ([i915#4525]) -> [SKIP][427] ([i915#14544] / [i915#4525]) +1 other test skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-8/igt@gem_exec_balancer@parallel.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: [SKIP][428] ([i915#14544] / [i915#4525]) -> [SKIP][429] ([i915#4525]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][430] ([i915#3281]) -> [SKIP][431] ([i915#14544] / [i915#3281]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][432] ([i915#7276]) -> [SKIP][433] ([i915#14544] / [i915#7276]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][434] ([i915#4613]) -> [SKIP][435] ([i915#14544] / [i915#4613]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: [SKIP][436] ([i915#3282]) -> [SKIP][437] ([i915#14544] / [i915#3282]) +2 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#3282]) -> [SKIP][439] ([i915#3282]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#15656]) -> [SKIP][441] ([i915#15656]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@gem_tiled_pread_basic@basic.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: [SKIP][442] ([i915#2527]) -> [SKIP][443] ([i915#14544] / [i915#2527]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-2/igt@gen9_exec_parse@unaligned-jump.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#2527]) -> [SKIP][445] ([i915#2527]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#8399]) -> [SKIP][447] ([i915#8399]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][448] ([i915#8399]) -> [SKIP][449] ([i915#14544] / [i915#8399]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#5286]) -> [SKIP][451] ([i915#5286]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][452] ([i915#5286]) -> [SKIP][453] ([i915#14544] / [i915#5286]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][454] ([i915#3828]) -> [SKIP][455] ([i915#14544] / [i915#3828]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][456] ([i915#3638]) -> [SKIP][457] ([i915#14544] / [i915#3638]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][458] ([i915#6095]) -> [SKIP][459] ([i915#14544] / [i915#6095]) +6 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][460] ([i915#14098] / [i915#6095]) -> [SKIP][461] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#6095]) -> [SKIP][463] ([i915#6095]) +2 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][464] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][465] ([i915#14098] / [i915#6095]) +6 other tests skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [ABORT][466] ([i915#15132]) -> [INCOMPLETE][467] ([i915#14694] / [i915#15582]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: [SKIP][468] ([i915#16471]) -> [SKIP][469] ([i915#14544] / [i915#16471]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][470] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][471] ([i915#11151] / [i915#7828]) +2 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][472] ([i915#15330] / [i915#3116]) -> [SKIP][473] ([i915#14544] / [i915#15330] / [i915#3116]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][474] ([i915#13049]) -> [SKIP][475] ([i915#13049] / [i915#14544]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#3555]) -> [SKIP][477] ([i915#3555]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][478] ([i915#13049] / [i915#3359]) -> [SKIP][479] ([i915#13049]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][480] ([i915#14544]) -> [SKIP][481] +24 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][482] ([i915#13691] / [i915#14544]) -> [SKIP][483] ([i915#13691]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#16361]) -> [SKIP][485] ([i915#16361]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][486] ([i915#16361]) -> [SKIP][487] ([i915#14544] / [i915#16361]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#9934]) -> [SKIP][489] ([i915#9934]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-busy-flip: - shard-rkl: [SKIP][490] ([i915#9934]) -> [SKIP][491] ([i915#14544] / [i915#9934]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_flip@2x-busy-flip.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_flip@2x-busy-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][492] ([i915#15643]) -> [SKIP][493] ([i915#14544] / [i915#15643]) +2 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#15643]) -> [SKIP][495] ([i915#15643]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: [SKIP][496] ([i915#4423]) -> [SKIP][497] [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-2p-rte: - shard-rkl: [SKIP][498] -> [SKIP][499] ([i915#14544]) +26 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-2p-rte.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-rte.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: [SKIP][500] ([i915#15990] / [i915#4423]) -> [SKIP][501] ([i915#15990]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#1825]) -> [SKIP][503] ([i915#1825]) +3 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][504] ([i915#1825]) -> [SKIP][505] ([i915#14544] / [i915#1825]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-rkl: [SKIP][506] ([i915#15102] / [i915#3023]) -> [SKIP][507] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][508] ([i915#15102]) -> [SKIP][509] ([i915#14544] / [i915#15102]) +8 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-pri-indfb-multidraw: - shard-dg1: [SKIP][510] -> [SKIP][511] ([i915#4423]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-pri-indfb-multidraw.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk: [SKIP][512] -> [INCOMPLETE][513] ([i915#16056]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-glk6/igt@kms_frontbuffer_tracking@hdr-suspend.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-glk8/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][514] ([i915#15102]) -> [SKIP][515] ([i915#10433] / [i915#15102]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#15102] / [i915#3023]) +4 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][518] ([i915#10433] / [i915#15102]) -> [SKIP][519] ([i915#15102]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-slowdraw: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15102]) -> [SKIP][521] ([i915#15102]) +4 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][522] ([i915#12713] / [i915#16490]) -> [SKIP][523] ([i915#1187] / [i915#12713] / [i915#16490]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][524] ([i915#3555] / [i915#8228]) -> [SKIP][525] ([i915#14544] / [i915#3555] / [i915#8228]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_hdr@invalid-hdr.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#15458]) -> [SKIP][527] ([i915#15458]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-rkl: [SKIP][528] ([i915#15709]) -> [SKIP][529] ([i915#14544] / [i915#15709]) +2 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#15709]) -> [SKIP][531] ([i915#15709]) +2 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][532] ([i915#3555]) -> [SKIP][533] ([i915#14544] / [i915#3555]) +2 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][534] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][535] ([i915#12343] / [i915#5354]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][536] ([i915#3828]) -> [SKIP][537] ([i915#9340]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [SKIP][538] ([i915#15073]) -> [SKIP][539] ([i915#14544] / [i915#15073]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#15403]) -> [SKIP][541] ([i915#15403]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_pm_rpm@package-g7.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: [SKIP][542] ([i915#6524]) -> [SKIP][543] ([i915#14544] / [i915#6524]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][544] ([i915#11520]) -> [SKIP][545] ([i915#11520] / [i915#14544]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][546] ([i915#11520] / [i915#14544]) -> [SKIP][547] ([i915#11520]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: [SKIP][548] ([i915#1072] / [i915#9732]) -> [SKIP][549] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@psr-suspend: - shard-rkl: [SKIP][550] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][551] ([i915#1072] / [i915#9732]) +5 other tests skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-6/igt@kms_psr@psr-suspend.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-2/igt@kms_psr@psr-suspend.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][552] ([i915#5289]) -> [SKIP][553] ([i915#14544] / [i915#5289]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][554] ([i915#8623]) -> [SKIP][555] ([i915#14544] / [i915#8623]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][556] ([i915#11920]) -> [SKIP][557] ([i915#11920] / [i915#14544]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@kms_vrr@lobf.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@kms_vrr@lobf.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][558] ([i915#3708]) -> [SKIP][559] ([i915#14544] / [i915#3708]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-4/igt@prime_vgem@coherency-gtt.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][560] ([i915#9917]) -> [SKIP][561] ([i915#14544] / [i915#9917]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18791/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#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#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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [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#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [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#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [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#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [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#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16544 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#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#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [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#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#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [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#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [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_8994 -> IGTPW_15495 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18791: 031615563ea8f1acce065bea91fe6ce6b0ce965c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15495: 15495 IGT_8994: 59469572ae481848d6bd469242aef7c5333b39ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15495/index.html [-- Attachment #2: Type: text/html, Size: 189516 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events 2026-07-09 5:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events Jeevan B ` (3 preceding siblings ...) 2026-07-10 2:40 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-07-20 5:19 ` Dibin Moolakadan Subrahmanian 4 siblings, 0 replies; 6+ messages in thread From: Dibin Moolakadan Subrahmanian @ 2026-07-20 5:19 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: ramanaidu.naladala On 7/9/2026 10:39 AM, Jeevan B wrote: > The DC3CO frame-drop test currently waits for a vblank after committing > a new framebuffer, which does not guarantee that the frame was actually > presented. > > Switch to page flips and wait for the corresponding completion event, > which confirms that the frame reached scanout. The test now alternates > between two framebuffers using page flips, preserving the playback-like > cadence needed to exercise DC3CO entry/exit transitions. > > Keep the existing vblank-gap validation, but derive the sequence number > from the completed page flip instead of an independently waited vblank. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/intel/kms_pm_dc.c | 69 +++++++++++++++++++++++++++++++---------- > 1 file changed, 52 insertions(+), 17 deletions(-) > > diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c > index ef53c5f96..da077a2dc 100644 > --- a/tests/intel/kms_pm_dc.c > +++ b/tests/intel/kms_pm_dc.c > @@ -362,30 +362,60 @@ static void test_dc3co_vpb_simulation(data_t *data) > cleanup_dc3co_fbs(data); > } > > -static uint32_t wait_for_next_vblank_seq(data_t *data) > +struct dc3co_flip { > + bool done; > + unsigned int seq; > +}; > + > +static void dc3co_flip_handler(int fd, unsigned int seq, unsigned int tv_sec, > + unsigned int tv_usec, void *user_data) > { > - drmVBlank wait = {}; > - igt_crtc_t *crtc = data->output->pending_crtc; > + struct dc3co_flip *flip = user_data; > > - igt_assert_f(crtc, "No CRTC bound to output for vblank wait\n"); > + flip->seq = seq; > + flip->done = true; > +} > > - wait.request.type = kmstest_get_vbl_flag(crtc->crtc_index) | > - DRM_VBLANK_RELATIVE | > - DRM_VBLANK_NEXTONMISS; > - wait.request.sequence = 1; > - igt_assert_eq(drmWaitVBlank(data->drm_fd, &wait), 0); > +static unsigned int dc3co_flip_and_wait(data_t *data, uint32_t crtc_id, > + uint32_t fb_id, int frame_time_us) > +{ > + drmEventContext evctx = { > + .version = 2, > + .page_flip_handler = dc3co_flip_handler, > + }; > + struct dc3co_flip flip = {}; > + struct pollfd pfd = { > + .fd = data->drm_fd, > + .events = POLLIN, > + }; > + int timeout_ms = (DC3CO_MAX_VBLANK_GAP + 2) * frame_time_us / 1000; > + > + if (timeout_ms < 50) > + timeout_ms = 50; > > - return wait.reply.sequence; > + igt_assert_eq(drmModePageFlip(data->drm_fd, crtc_id, fb_id, > + DRM_MODE_PAGE_FLIP_EVENT, &flip), 0); > + > + while (!flip.done) { > + igt_assert_f(poll(&pfd, 1, timeout_ms) > 0, > + "Frame dropped: no page flip completion within %d ms " > + "during DC3CO entry/exit\n", timeout_ms); > + igt_assert_eq(drmHandleEvent(data->drm_fd, &evctx), 0); > + } > + > + return flip.seq; > } > > static void detect_dc3co_framedrop(data_t *data) > { > igt_plane_t *primary; > + igt_crtc_t *crtc; > uint32_t dc3co_prev_cnt; > uint32_t dc3co_cur_cnt; > uint32_t prev_vblank_seq = 0; > uint32_t vblank_seq; > uint32_t vblank_gap; > + int frame_time_us; > int delay; > int committed = 0; > bool dc3co_after_target = false; > @@ -393,25 +423,30 @@ static void detect_dc3co_framedrop(data_t *data) > > igt_require_f(data->mode->vrefresh != 0, "Invalid vrefresh rate of 0\n"); > > + crtc = data->output->pending_crtc; > + igt_assert_f(crtc, "No CRTC bound to output\n"); > + > primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); > - igt_plane_set_fb(primary, NULL); > + > + igt_plane_set_fb(primary, &data->fb_rgb); > igt_display_commit(&data->display); > > dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO); > > - delay = (int)(DC3CO_FRAME_DELAY_FACTOR * (1000000 / data->mode->vrefresh)); > + frame_time_us = 1000000 / data->mode->vrefresh; > + delay = (int)(DC3CO_FRAME_DELAY_FACTOR * frame_time_us); > > while (committed < DC3CO_VERIFY_COMMITS) { > front = !front; > - igt_plane_set_fb(primary, front ? &data->fb_rgr : &data->fb_rgb); > - igt_display_commit(&data->display); > - > - vblank_seq = wait_for_next_vblank_seq(data); > + vblank_seq = dc3co_flip_and_wait(data, crtc->crtc_id, > + front ? data->fb_rgr.fb_id : > + data->fb_rgb.fb_id, > + frame_time_us); > if (prev_vblank_seq) { > vblank_gap = vblank_seq - prev_vblank_seq; > igt_assert_f(igt_vblank_after(vblank_seq, prev_vblank_seq) && > vblank_gap <= DC3CO_MAX_VBLANK_GAP, > - "Unexpected vblank gap %u after commit %d (prev=%u, cur=%u)\n", > + "Frame drop: unexpected vblank gap %u after commit %d (prev=%u, cur=%u)\n", > vblank_gap, committed + 1, prev_vblank_seq, vblank_seq); > } > prev_vblank_seq = vblank_seq; Page flips fit video-playback simulation better than the vblank wait. LGTM. Reviewed-by: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com> ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-20 5:20 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-09 5:09 [PATCH i-g-t] tests/intel/kms_pm_dc: Detect frame drops via page-flip events Jeevan B 2026-07-09 7:22 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-07-09 7:55 ` ✓ i915.CI.BAT: " Patchwork 2026-07-09 10:44 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-10 2:40 ` ✗ i915.CI.Full: failure " Patchwork 2026-07-20 5:19 ` [PATCH i-g-t] " Dibin Moolakadan Subrahmanian
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox