* [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK
@ 2026-03-17 8:40 Xiandong Wang
2026-03-17 8:40 ` [PATCH i-g-t v2 1/1] " Xiandong Wang
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Xiandong Wang @ 2026-03-17 8:40 UTC (permalink / raw)
To: igt-dev
Cc: Jason-JH Lin, Nancy Lin, Singo Chang, Gil Dekel, Yacoub,
Project_Global_Chrome_Upstream_Group, Xiandong Wang
From: Xiandong Wang <Xiandong.Wang@mediatek.com>
Hi,
This series reduces intermittent timing-related failures in
tests/kms_cursor_legacy on MTK platforms.
Under higher system load, the existing vblank timing assertions can be too
tight for MTK and may fail sporadically. The patch relaxes MTK-specific
upper-bound checks in the affected paths, while keeping the original
assertions unchanged for non-MTK drivers.
v2:
- Reword commit message to focus on test stability
- Keep existing strict checks for non-MTK platforms
Xiandong Wang (1):
tests/kms_cursor_legacy: crrect the check for mtk drm
tests/kms_cursor_legacy.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
--
2.46.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t v2 1/1] tests/kms_cursor_legacy: relax checks on MTK 2026-03-17 8:40 [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK Xiandong Wang @ 2026-03-17 8:40 ` Xiandong Wang 2026-04-27 2:44 ` Jason-JH Lin (林睿祥) 2026-03-17 21:27 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Xiandong Wang @ 2026-03-17 8:40 UTC (permalink / raw) To: igt-dev Cc: Jason-JH Lin, Nancy Lin, Singo Chang, Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group, Xiandong Wang From: Xiandong Wang <Xiandong.Wang@mediatek.com> kms_cursor_legacy uses tight vblank timing assertions that can be unstable on MTK under higher system load, leading to intermittent failures. Use relaxed upper-bound checks for the MTK-specific path in the affected subtests, while preserving the existing assertions for other drivers. This improves test robustness on MTK without changing expectations on non-MTK platforms. Signed-off-by: Xiandong Wang <Xiandong.Wang@mediatek.com> --- tests/kms_cursor_legacy.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c index 5399ef481..e6ab33eca 100644 --- a/tests/kms_cursor_legacy.c +++ b/tests/kms_cursor_legacy.c @@ -1038,12 +1038,17 @@ static void flip_vs_cursor(igt_display_t *display, enum flip_test mode, int nloo igt_set_timeout(1, "Stuck page flip"); igt_ignore_warn(read(display->drm_fd, &vbl, sizeof(vbl))); - if (!mode_requires_extra_vblank(mode)) - igt_assert_eq(igt_crtc_get_vblank(crtc, 0), - vblank_start + 1); - else + if (!mode_requires_extra_vblank(mode)) { + if (is_mtk_device(display->drm_fd)) + igt_assert_lte(igt_crtc_get_vblank(crtc, 0), + vblank_start + 1); + else + igt_assert_eq(igt_crtc_get_vblank(crtc, 0), + vblank_start + 1); + } else { igt_assert_lte(igt_crtc_get_vblank(crtc, 0), vblank_start + 2); + } igt_reset_timeout(); } while (nloops--); @@ -1442,8 +1447,12 @@ static void cursor_vs_flip(igt_display_t *display, enum flip_test mode, int nloo vblank_last = vbl.sequence; } - if (!cursor_slowpath(display, mode)) - igt_assert_lte(vbl.sequence, vblank_start + 5 * vrefresh / 8); + if (!cursor_slowpath(display, mode)) { + if (is_mtk_device(display->drm_fd)) + igt_assert_lte(vbl.sequence, vblank_start + ((5 * vrefresh / 8) * 4)); + else + igt_assert_lte(vbl.sequence, vblank_start + 5 * vrefresh / 8); + } shared[0] = 1; igt_waitchildren(); -- 2.46.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2 1/1] tests/kms_cursor_legacy: relax checks on MTK 2026-03-17 8:40 ` [PATCH i-g-t v2 1/1] " Xiandong Wang @ 2026-04-27 2:44 ` Jason-JH Lin (林睿祥) 2026-04-30 1:46 ` 回复: " Xiandong Wang (王先冬) 0 siblings, 1 reply; 9+ messages in thread From: Jason-JH Lin (林睿祥) @ 2026-04-27 2:44 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Xiandong Wang (王先冬) Cc: Project_Global_Chrome_Upstream_Group, markyacoub@chromium.org, Nancy Lin (林欣螢), Singo Chang (張興國), gildekel@google.com Hi Xiandong, On Tue, 2026-03-17 at 16:40 +0800, Xiandong Wang wrote: > From: Xiandong Wang <Xiandong.Wang@mediatek.com> > > kms_cursor_legacy uses tight vblank timing assertions that can be > unstable > on MTK under higher system load, leading to intermittent failures. > > Use relaxed upper-bound checks for the MTK-specific path in the > affected > subtests, while preserving the existing assertions for other drivers. > > This improves test robustness on MTK without changing expectations on > non-MTK platforms. > > Signed-off-by: Xiandong Wang <Xiandong.Wang@mediatek.com> > --- > tests/kms_cursor_legacy.c | 21 +++++++++++++++------ > 1 file changed, 15 insertions(+), 6 deletions(-) > > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c > index 5399ef481..e6ab33eca 100644 > --- a/tests/kms_cursor_legacy.c > +++ b/tests/kms_cursor_legacy.c > @@ -1038,12 +1038,17 @@ static void flip_vs_cursor(igt_display_t > *display, enum flip_test mode, int nloo > igt_set_timeout(1, "Stuck page flip"); > igt_ignore_warn(read(display->drm_fd, &vbl, > sizeof(vbl))); > > - if (!mode_requires_extra_vblank(mode)) > - igt_assert_eq(igt_crtc_get_vblank(crtc, 0), > - vblank_start + 1); > - else > + if (!mode_requires_extra_vblank(mode)) { > + if (is_mtk_device(display->drm_fd)) > + igt_assert_lte(igt_crtc_get_vblank(c > rtc, 0), > + vblank_start + 1); It seems you got a igt_crtc_get_vblank(crtc, 0) == vblank_start here. Since changing from igt_assert_eq to igt_assert_lte is a relaxation of the assertion condition and igt_crtc_get_vblank(crtc, 0) won't less than vblank_start. It would not cause any regressions on other platform. Therefore, there is no need to guard this relaxation specifically for MTK devices. > + else > + igt_assert_eq(igt_crtc_get_vblank(cr > tc, 0), > + vblank_start + 1); > + } else { > igt_assert_lte(igt_crtc_get_vblank(crtc, 0), > vblank_start + 2); > + } I think it could be simply replaced to: if (!mode_requires_extra_vblank(mode)) igt_assert_lte(igt_crtc_get_vblank(crtc, 0), vblank_start + 1); else igt_assert_lte(igt_crtc_get_vblank(crtc, 0), vblank_start + 2); > > igt_reset_timeout(); > } while (nloops--); > @@ -1442,8 +1447,12 @@ static void cursor_vs_flip(igt_display_t > *display, enum flip_test mode, int nloo > vblank_last = vbl.sequence; > } > > - if (!cursor_slowpath(display, mode)) > - igt_assert_lte(vbl.sequence, vblank_start + > 5 * vrefresh / 8); > + if (!cursor_slowpath(display, mode)) { > + if (is_mtk_device(display->drm_fd)) > + igt_assert_lte(vbl.sequence, > vblank_start + ((5 * vrefresh / 8) * 4)); > + else > + igt_assert_lte(vbl.sequence, > vblank_start + 5 * vrefresh / 8); > + } It's about the threshold. Maybe you can do something like this: threshold = 5 * vrefresh / 8; /* Add some comment for why we need this... */ if (is_mtk_device(display->drm_fd)) threshold = 4 * threshold; if (!cursor_slowpath(display, mode)) igt_assert_lte(vbl.sequence, vblank_start + threshold); Regards, Jason-JH Lin ^ permalink raw reply [flat|nested] 9+ messages in thread
* 回复: [PATCH i-g-t v2 1/1] tests/kms_cursor_legacy: relax checks on MTK 2026-04-27 2:44 ` Jason-JH Lin (林睿祥) @ 2026-04-30 1:46 ` Xiandong Wang (王先冬) 0 siblings, 0 replies; 9+ messages in thread From: Xiandong Wang (王先冬) @ 2026-04-30 1:46 UTC (permalink / raw) To: Jason-JH Lin (林睿祥), igt-dev@lists.freedesktop.org Cc: Project_Global_Chrome_Upstream_Group, markyacoub@chromium.org, Nancy Lin (林欣螢), Singo Chang (張興國), gildekel@google.com [-- Attachment #1: Type: text/plain, Size: 4580 bytes --] Hi Jason, Thank you for the thorough review and valuable suggestions! You're absolutely right about the first change in flip_vs_cursor(). Since igt_assert_lte() is a relaxation from igt_assert_eq() and igt_crtc_get_vblank(crtc, 0) won't be less than vblank_start, there's no risk of regression on other platforms. I'll simplify it as you suggested and remove the MTK-specific guard. For the second change in cursor_vs_flip(), I agree that extracting the threshold calculation makes the code much cleaner and easier to understand. I'll refactor it following your suggestion and add a comment explaining why MTK devices need the 4x multiplier (due to timing instability under system load). I'll send out v3 with these improvements shortly. Best regards, Xiandong -----邮件原件----- 发件人: Jason-JH Lin (林睿祥) <Jason-JH.Lin@mediatek.com> 发送时间: 2026年4月27日 10:44 收件人: igt-dev@lists.freedesktop.org; Xiandong Wang (王先冬) <Xiandong.Wang@mediatek.com> 抄送: Project_Global_Chrome_Upstream_Group <Project_Global_Chrome_Upstream_Group@mediatek.com>; markyacoub@chromium.org; Nancy Lin (林欣螢) <Nancy.Lin@mediatek.com>; Singo Chang (張興國) <Singo.Chang@mediatek.com>; gildekel@google.com 主题: Re: [PATCH i-g-t v2 1/1] tests/kms_cursor_legacy: relax checks on MTK Hi Xiandong, On Tue, 2026-03-17 at 16:40 +0800, Xiandong Wang wrote: > From: Xiandong Wang <Xiandong.Wang@mediatek.com> > > kms_cursor_legacy uses tight vblank timing assertions that can be > unstable on MTK under higher system load, leading to intermittent > failures. > > Use relaxed upper-bound checks for the MTK-specific path in the > affected subtests, while preserving the existing assertions for other > drivers. > > This improves test robustness on MTK without changing expectations on > non-MTK platforms. > > Signed-off-by: Xiandong Wang <Xiandong.Wang@mediatek.com> > --- > tests/kms_cursor_legacy.c | 21 +++++++++++++++------ > 1 file changed, 15 insertions(+), 6 deletions(-) > > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c > index 5399ef481..e6ab33eca 100644 > --- a/tests/kms_cursor_legacy.c > +++ b/tests/kms_cursor_legacy.c > @@ -1038,12 +1038,17 @@ static void flip_vs_cursor(igt_display_t > *display, enum flip_test mode, int nloo > igt_set_timeout(1, "Stuck page flip"); > igt_ignore_warn(read(display->drm_fd, &vbl, sizeof(vbl))); > > - if (!mode_requires_extra_vblank(mode)) > - igt_assert_eq(igt_crtc_get_vblank(crtc, 0), > - vblank_start + 1); > - else > + if (!mode_requires_extra_vblank(mode)) { > + if (is_mtk_device(display->drm_fd)) > + igt_assert_lte(igt_crtc_get_vblank(c > rtc, 0), > + vblank_start + 1); It seems you got a igt_crtc_get_vblank(crtc, 0) == vblank_start here. Since changing from igt_assert_eq to igt_assert_lte is a relaxation of the assertion condition and igt_crtc_get_vblank(crtc, 0) won't less than vblank_start. It would not cause any regressions on other platform. Therefore, there is no need to guard this relaxation specifically for MTK devices. > + else > + igt_assert_eq(igt_crtc_get_vblank(cr > tc, 0), > + vblank_start + 1); > + } else { > igt_assert_lte(igt_crtc_get_vblank(crtc, 0), > vblank_start + 2); > + } I think it could be simply replaced to: if (!mode_requires_extra_vblank(mode)) igt_assert_lte(igt_crtc_get_vblank(crtc, 0), vblank_start + 1); else igt_assert_lte(igt_crtc_get_vblank(crtc, 0), vblank_start + 2); > > igt_reset_timeout(); > } while (nloops--); > @@ -1442,8 +1447,12 @@ static void cursor_vs_flip(igt_display_t > *display, enum flip_test mode, int nloo > vblank_last = vbl.sequence; > } > > - if (!cursor_slowpath(display, mode)) > - igt_assert_lte(vbl.sequence, vblank_start + > 5 * vrefresh / 8); > + if (!cursor_slowpath(display, mode)) { > + if (is_mtk_device(display->drm_fd)) > + igt_assert_lte(vbl.sequence, > vblank_start + ((5 * vrefresh / 8) * 4)); > + else > + igt_assert_lte(vbl.sequence, > vblank_start + 5 * vrefresh / 8); > + } It's about the threshold. Maybe you can do something like this: threshold = 5 * vrefresh / 8; /* Add some comment for why we need this... */ if (is_mtk_device(display->drm_fd)) threshold = 4 * threshold; if (!cursor_slowpath(display, mode)) igt_assert_lte(vbl.sequence, vblank_start + threshold); Regards, Jason-JH Lin [-- Attachment #2: Type: text/html, Size: 7937 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_cursor_legacy: relax checks on MTK 2026-03-17 8:40 [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK Xiandong Wang 2026-03-17 8:40 ` [PATCH i-g-t v2 1/1] " Xiandong Wang @ 2026-03-17 21:27 ` Patchwork 2026-03-17 21:46 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-17 21:27 UTC (permalink / raw) To: Xiandong Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5700 bytes --] == Series Details == Series: tests/kms_cursor_legacy: relax checks on MTK URL : https://patchwork.freedesktop.org/series/163364/ State : success == Summary == CI Bug Log - changes from XEIGT_8807_BAT -> XEIGTPW_14791_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 14) ------------------------------ Additional (2): bat-adlp-7 bat-bmg-3 Known issues ------------ Here are the changes found in XEIGTPW_14791_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_dsc@dsc-basic: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#2244] / [Intel XE#455]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-7: NOTRUN -> [DMESG-WARN][2] ([Intel XE#7483]) +12 other tests dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_balancer@twice-cm-virtual-userptr: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#7482]) +17 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_exec_balancer@twice-cm-virtual-userptr.html * igt@xe_exec_fault_mode@twice-rebind-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html * igt@xe_live_ktest@xe_bo: - bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#2229] / [Intel XE#5488]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@vram: - bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#1008] / [Intel XE#5591]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xe2: - bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#977]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#2838] / [Intel XE#979]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#979]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - bat-bmg-3: NOTRUN -> [SKIP][13] ([Intel XE#6566]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488 [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561 [Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591 [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8807 -> IGTPW_14791 * Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a IGTPW_14791: 14791 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6 xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a: 90a49598c224945b556bee26d693fade1b8bdb3a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/index.html [-- Attachment #2: Type: text/html, Size: 6808 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_cursor_legacy: relax checks on MTK 2026-03-17 8:40 [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK Xiandong Wang 2026-03-17 8:40 ` [PATCH i-g-t v2 1/1] " Xiandong Wang 2026-03-17 21:27 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-03-17 21:46 ` Patchwork 2026-03-19 3:49 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-19 7:31 ` ✓ Xe.CI.FULL: success " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-17 21:46 UTC (permalink / raw) To: Xiandong Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2448 bytes --] == Series Details == Series: tests/kms_cursor_legacy: relax checks on MTK URL : https://patchwork.freedesktop.org/series/163364/ State : success == Summary == CI Bug Log - changes from IGT_8807 -> IGTPW_14791 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14791 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-dg2-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-dg2-14/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/bat-dg2-14/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6] +78 other tests pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8807 -> IGTPW_14791 * Linux: CI_DRM_18164 -> CI_DRM_18167 CI-20190529: 20190529 CI_DRM_18164: 113073d07f958385b5b80d29b62e10d2cf0181d6 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18167: 90a49598c224945b556bee26d693fade1b8bdb3a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14791: 14791 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/index.html [-- Attachment #2: Type: text/html, Size: 3188 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_cursor_legacy: relax checks on MTK 2026-03-17 8:40 [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK Xiandong Wang ` (2 preceding siblings ...) 2026-03-17 21:46 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-19 3:49 ` Patchwork 2026-03-20 15:06 ` Kamil Konieczny 2026-03-19 7:31 ` ✓ Xe.CI.FULL: success " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2026-03-19 3:49 UTC (permalink / raw) To: Xiandong Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 159007 bytes --] == Series Details == Series: tests/kms_cursor_legacy: relax checks on MTK URL : https://patchwork.freedesktop.org/series/163364/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18167_full -> IGTPW_14791_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14791_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14791_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_14791/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_14791_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@full-late-pulse: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-8/igt@gem_exec_balancer@full-late-pulse.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@gem_exec_balancer@full-late-pulse.html New tests --------- New tests have been introduced between CI_DRM_18167_full and IGTPW_14791_full: ### New IGT tests (5) ### * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [3.47] s Known issues ------------ Here are the changes found in IGTPW_14791_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#15678]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3281]) +9 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#13008]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#12392] / [i915#13356]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][17] ([i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk1/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-snb5/igt@gem_ctx_persistence@file.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-7/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4036]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@gem_exec_balancer@noheartbeat.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-5/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#6334]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#6334]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#6344]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +10 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#3281]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +17 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [PASS][46] -> [INCOMPLETE][47] ([i915#13356]) +1 other test incomplete [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk4/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613] / [i915#7582]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#4613]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-dg1: NOTRUN -> [FAIL][56] ([i915#15734]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [CRASH][57] ([i915#5493]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#8289]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@gem_mmap_gtt@close-race.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: NOTRUN -> [DMESG-WARN][62] ([i915#15478]) +1 other test dmesg-warn [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +11 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@gem_pread@exhaustion.html - shard-glk10: NOTRUN -> [WARN][67] ([i915#2658]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk10/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][69] ([i915#14702] / [i915#2658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#13717]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#13398]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [PASS][74] -> [ABORT][75] ([i915#15131]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@write-bad-handle: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@gem_readwrite@write-bad-handle.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#14544] / [i915#8411]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][85] ([i915#13809]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-glk11: NOTRUN -> [INCOMPLETE][90] ([i915#13356] / [i915#14586]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk11/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [PASS][91] -> [ABORT][92] ([i915#15152]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@gem_workarounds@suspend-resume-fd.html - shard-glk10: NOTRUN -> [INCOMPLETE][93] ([i915#13356] / [i915#14586]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk10/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#2527]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#14073]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_drm_fdinfo@busy-idle-check-all@rcs0: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#11527]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11527]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#11527]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#14073]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#14118]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#14118]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-idle.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#14118]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#15479]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][109] ([i915#15342]) +1 other test abort [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk: NOTRUN -> [ABORT][110] ([i915#15342]) +1 other test abort [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk5/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][111] -> [DMESG-WARN][112] ([i915#13029] / [i915#14545]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-3/igt@i915_module_load@reload-no-display.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][113] -> [DMESG-WARN][114] ([i915#13029] / [i915#14545]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@i915_module_load@reload-no-display.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6412]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#8399]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#6590]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#6590]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6590]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6590]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rpm@system-suspend-devices: - shard-rkl: [PASS][121] -> [ABORT][122] ([i915#15060]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@i915_pm_rpm@system-suspend-devices.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11681]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11681]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu-1: NOTRUN -> [SKIP][125] +31 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html - shard-dg1: NOTRUN -> [SKIP][126] +27 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5723]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][128] ([i915#4817] / [i915#7443]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6645]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4077]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#4817]) +1 other test incomplete [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk9/igt@i915_suspend@forcewake.html - shard-rkl: NOTRUN -> [INCOMPLETE][132] ([i915#4817]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-glk10: NOTRUN -> [INCOMPLETE][133] ([i915#4817]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk10/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#7707]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-5/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4212]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#4212]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4212]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#5190]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4215] / [i915#5190]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#12761] / [i915#14995]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][142] ([i915#1769]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#1769] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][145] ([i915#1769]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][146] ([i915#5956]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#5286]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5286]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/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][150] ([i915#5286]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/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][151] ([i915#5286]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#14544] / [i915#5286]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3638]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#14544] / [i915#3638]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3828]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3828]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3828]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3828]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3828]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3638]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4538] / [i915#5190]) +10 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#14544]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4538]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][165] +97 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#6095]) +87 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6095]) +54 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#12313]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#12805]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][172] +483 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#12805]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#12805]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#12805]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#12805]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#6095]) +211 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][178] ([i915#14694] / [i915#15582]) +1 other test incomplete [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#14544] / [i915#6095]) +9 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#10307] / [i915#6095]) +152 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#14098] / [i915#6095]) +66 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#6095]) +54 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6095]) +35 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-3.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#6095]) +19 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3742]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][186] +13 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +10 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@vga-edid-read: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +6 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +6 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6944]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][196] ([i915#7173]) +1 other test fail [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#6944] / [i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#15330] / [i915#3116] / [i915#3299]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#15330] / [i915#3299]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#15330] / [i915#3299]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#15330] / [i915#3116]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#15330]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#15330] / [i915#3299]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#15330]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#15330]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][206] ([i915#15330]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#15330]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#6944]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#6944]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#6944] / [i915#9424]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#6944] / [i915#7118]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_content_protection@srm.html - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#6944]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6944]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#13049]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-rkl: [PASS][218] -> [FAIL][219] ([i915#13566]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#13049]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8814]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][222] -> [FAIL][223] ([i915#13566]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][224] ([i915#13566]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#13049] / [i915#14544]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#13049]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#13049]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#13049]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#13049]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#3555]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#4103]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9809]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][234] +29 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#13046] / [i915#5354]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#9833]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#9723]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#9723]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][239] ([i915#9723]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9833]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#13691]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#3555] / [i915#3804]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#1769] / [i915#3555] / [i915#3804]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#3804]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/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][246] ([i915#14544] / [i915#3804]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [PASS][247] -> [SKIP][248] ([i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#13707]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#13707] / [i915#14544]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#8812]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8812]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#3840]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#3840]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#3840]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#3840]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3469]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#3955]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#1839]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#14544] / [i915#658]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#9934]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#9934]) +8 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#9934]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3637] / [i915#9934]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3637] / [i915#9934]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [PASS][266] -> [TIMEOUT][267] ([i915#14033] / [i915#14350]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][268] -> [TIMEOUT][269] ([i915#14033]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9934]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#3637] / [i915#9934]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2: - shard-glk: [PASS][272] -> [FAIL][273] ([i915#13027]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#14544] / [i915#15643]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15643]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#15643]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#15643]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#15643]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8810] / [i915#8813]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8810] / [i915#8813]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#15643]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#15643]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#15643] / [i915#5190]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#8708]) +19 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#10056]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#10055]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#15102]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][288] ([i915#15102]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#15102] / [i915#3458]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8708]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#15102]) +21 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#15102]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15102]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#15104]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#15102] / [i915#3458]) +12 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#15102] / [i915#3023]) +21 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-glk11: NOTRUN -> [SKIP][298] +127 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#5354]) +28 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#8708]) +11 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#1825]) +55 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#1825]) +21 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][303] +52 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#14544] / [i915#1825]) +10 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][306] -> [SKIP][307] ([i915#13030]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8228]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8228]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8228]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#12713] / [i915#3555] / [i915#8228]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#13688]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#15460]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#15459]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#15458]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#15458]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#15638] / [i915#15722]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][319] ([i915#15638] / [i915#15722]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][320] ([i915#15638] / [i915#15722]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#15638] / [i915#15722]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#15815]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#14544] / [i915#14712]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#13705]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#15709]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/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-dg1: NOTRUN -> [SKIP][326] ([i915#15709]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#15709]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#15608]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#15608]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#15709]) +6 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#15608]) +5 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#15608]) +3 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#15608]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#15709]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-modifier.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#15608]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#15709]) +5 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][337] ([i915#10647] / [i915#12169]) +1 other test fail [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][338] ([i915#10647] / [i915#12177]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][339] ([i915#10647]) +1 other test fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][340] ([i915#10647]) +3 other tests fail [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#13958]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#13958]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#13958]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#13958]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-x.html - shard-tglu: NOTRUN -> [SKIP][345] ([i915#13958]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#13958]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#14259]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#14259]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#14259]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#6953] / [i915#9423]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#15329]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#15329]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#15329]) +4 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#15329] / [i915#6953]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#15329]) +3 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#14544] / [i915#5354]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#5354]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-18/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][358] ([i915#9812]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-3/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#9685]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9685]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][361] ([i915#9685]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][362] ([i915#15752]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#15739]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#8430]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#14544] / [i915#15073]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#15073]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][367] -> [SKIP][368] ([i915#15073]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#15073]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][370] -> [SKIP][371] ([i915#15073]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][372] ([i915#15073]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#6524]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#6524] / [i915#6805]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#6524]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#6524]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][377] ([i915#11520]) +3 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][378] ([i915#11520]) +4 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#9808]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][380] ([i915#12316]) +5 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#11520]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][382] ([i915#11520]) +10 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#11520]) +13 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][384] ([i915#11520]) +5 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#11520]) +4 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#11520]) +8 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#9683]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][388] ([i915#1072] / [i915#9732]) +13 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-render.html - shard-tglu: NOTRUN -> [SKIP][389] ([i915#9732]) +20 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-8/igt@kms_psr@fbc-pr-sprite-render.html - shard-mtlp: NOTRUN -> [SKIP][390] ([i915#9688]) +11 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#9732]) +26 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#9732]) +22 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-primary-blt: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_psr@psr-primary-blt.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][394] ([i915#4077] / [i915#9688]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-7/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr-sprite-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#9732]) +9 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][396] ([i915#9685]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#9685]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][398] ([i915#12755]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][399] ([i915#4235]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_rotation_crc@exhaust-fences.html - shard-dg1: NOTRUN -> [SKIP][400] ([i915#4884]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][401] ([i915#4235]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-7/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][402] ([i915#15500]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][403] ([i915#15492]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][404] ([i915#5289]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#5190]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#12755] / [i915#5190]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#5289]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][408] ([i915#12755]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#3555]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][410] ([i915#3555]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][411] ([i915#14544] / [i915#8623]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][412] ([i915#12276]) +1 other test incomplete [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][413] ([i915#12276]) +1 other test incomplete [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][414] ([i915#15243] / [i915#3555]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][415] ([i915#9906]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-10/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][416] ([i915#3555] / [i915#8808]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-1/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][417] ([i915#9906]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][418] +14 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][419] ([i915#2436]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][420] ([i915#2436]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][421] ([i915#7387]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][422] ([i915#2433]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html - shard-dg1: NOTRUN -> [SKIP][423] ([i915#2433]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][424] +151 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-snb1/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][425] ([i915#15778]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk9/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [ABORT][426] ([i915#15778]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][427] ([i915#8516]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][428] ([i915#13356] / [i915#14242]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk4/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][429] ([i915#10216] / [i915#3708]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][430] ([i915#3708] / [i915#4077]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-6/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][431] ([i915#9917]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][432] ([i915#13356]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][434] ([i915#13356]) -> [PASS][435] +2 other tests pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: [INCOMPLETE][436] ([i915#13356]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk1/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][438] ([i915#13390]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@gem_eio@in-flight-suspend.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_big@single: - shard-rkl: [DMESG-FAIL][440] ([i915#15478]) -> [PASS][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@gem_exec_big@single.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@gem_exec_big@single.html * igt@gem_lmem_swapping@smem-oom: - shard-dg2: [FAIL][442] ([i915#15734]) -> [PASS][443] [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-1/igt@gem_lmem_swapping@smem-oom.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [CRASH][444] ([i915#5493]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [SKIP][446] ([i915#4270]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][448] ([i915#13790] / [i915#2681]) -> [PASS][449] +1 other test pass [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][450] ([i915#12061] / [i915#15560]) -> [PASS][451] [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-8/igt@i915_selftest@live.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][452] ([i915#12061]) -> [PASS][453] [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-8/igt@i915_selftest@live@workarounds.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][454] ([i915#12761]) -> [PASS][455] [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][456] ([i915#15733] / [i915#5138]) -> [PASS][457] [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-dg1: [DMESG-WARN][458] ([i915#4423]) -> [PASS][459] +3 other tests pass [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][460] ([i915#12655] / [i915#3555]) -> [PASS][461] [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_color@deep-color.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-1/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][462] ([i915#13566]) -> [PASS][463] +1 other test pass [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][464] ([i915#13566]) -> [PASS][465] +3 other tests pass [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][466] ([i915#1257]) -> [PASS][467] [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-4/igt@kms_dp_aux_dev.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][468] ([i915#9878]) -> [PASS][469] [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [FAIL][470] ([i915#13027]) -> [PASS][471] +1 other test pass [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][472] ([i915#14412]) -> [PASS][473] +1 other test pass [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][474] ([i915#6953]) -> [PASS][475] [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][476] ([i915#15073]) -> [PASS][477] +1 other test pass [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#15073]) -> [PASS][479] [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][480] ([i915#15073]) -> [PASS][481] +1 other test pass [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: [INCOMPLETE][482] ([i915#10553]) -> [PASS][483] [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html - shard-rkl: [ABORT][484] ([i915#15132]) -> [PASS][485] [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [FAIL][486] ([i915#4349]) -> [PASS][487] +4 other tests pass [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-2/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][488] ([i915#4349]) -> [PASS][489] +10 other tests pass [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][490] ([i915#7697]) -> [SKIP][491] ([i915#14544] / [i915#7697]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][492] ([i915#4525]) -> [SKIP][493] ([i915#14544] / [i915#4525]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_big@single: - shard-tglu: [DMESG-FAIL][494] ([i915#15478]) -> [FAIL][495] ([i915#15816]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-10/igt@gem_exec_big@single.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-tglu-6/igt@gem_exec_big@single.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][496] ([i915#3281]) -> [SKIP][497] ([i915#14544] / [i915#3281]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_pread@snoop: - shard-rkl: [SKIP][498] ([i915#3282]) -> [SKIP][499] ([i915#14544] / [i915#3282]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@gem_pread@snoop.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_tiled_pread_pwrite: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#3282]) -> [SKIP][501] ([i915#3282]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@gem_tiled_pread_pwrite.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@gem_tiled_pread_pwrite.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][502] ([i915#2527]) -> [SKIP][503] ([i915#14544] / [i915#2527]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][504] ([i915#8399]) -> [SKIP][505] ([i915#14544] / [i915#8399]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][506] ([i915#1769] / [i915#3555]) -> [SKIP][507] ([i915#14544] / [i915#1769] / [i915#3555]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][508] ([i915#5286]) -> [SKIP][509] ([i915#14544] / [i915#5286]) +2 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/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-rkl: [SKIP][510] ([i915#3828]) -> [SKIP][511] ([i915#14544] / [i915#3828]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][512] ([i915#3638]) -> [SKIP][513] ([i915#14544] / [i915#3638]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: [SKIP][514] ([i915#4538]) -> [SKIP][515] ([i915#4423] / [i915#4538]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][516] ([i915#6095]) -> [SKIP][517] ([i915#14544] / [i915#6095]) +6 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][518] ([i915#14098] / [i915#6095]) -> [SKIP][519] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][520] ([i915#12313]) -> [SKIP][521] ([i915#12313] / [i915#14544]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/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: [SKIP][522] ([i915#12313] / [i915#14544]) -> [SKIP][523] ([i915#12313]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-rkl: [SKIP][524] ([i915#14544]) -> [SKIP][525] +1 other test skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_chamelium_color@ctm-0-50.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][526] ([i915#11151] / [i915#7828]) -> [SKIP][527] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][528] ([i915#7173]) -> [SKIP][529] ([i915#6944] / [i915#7118] / [i915#9424]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg2: [SKIP][530] ([i915#6944]) -> [FAIL][531] ([i915#7173]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-8/igt@kms_content_protection@atomic-dpms-hdcp14.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][532] ([i915#15330]) -> [SKIP][533] ([i915#14544] / [i915#15330]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][534] ([i915#15330] / [i915#3116]) -> [SKIP][535] ([i915#14544] / [i915#15330] / [i915#3116]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][536] ([i915#9433]) -> [SKIP][537] ([i915#6944] / [i915#9424]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-13/igt@kms_content_protection@mei-interface.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][538] ([i915#6944] / [i915#7118]) -> [FAIL][539] ([i915#7173]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-5/igt@kms_content_protection@srm.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-rkl: [SKIP][540] ([i915#6944]) -> [SKIP][541] ([i915#14544] / [i915#6944]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_content_protection@suspend-resume.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][542] ([i915#13049]) -> [SKIP][543] ([i915#13049] / [i915#14544]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][544] -> [SKIP][545] ([i915#14544]) +9 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#4103]) -> [SKIP][547] ([i915#4103]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][548] ([i915#3555] / [i915#3840]) -> [SKIP][549] ([i915#14544] / [i915#3555] / [i915#3840]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][550] ([i915#3955]) -> [SKIP][551] ([i915#14544] / [i915#3955]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][552] ([i915#1839]) -> [SKIP][553] ([i915#14544] / [i915#1839]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-3/igt@kms_feature_discovery@display-4x.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#658]) -> [SKIP][555] ([i915#658]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_feature_discovery@psr2.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: [SKIP][556] ([i915#9934]) -> [SKIP][557] ([i915#14544] / [i915#9934]) +4 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_flip@2x-absolute-wf_vblank.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: [SKIP][558] ([i915#4423] / [i915#8381]) -> [SKIP][559] ([i915#8381]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][560] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][561] ([i915#12314] / [i915#12745] / [i915#4839]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][562] ([i915#4839]) -> [INCOMPLETE][563] ([i915#12314] / [i915#4839]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][564] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][565] ([i915#12745] / [i915#4839] / [i915#6113]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg1: [SKIP][566] ([i915#15643] / [i915#4423]) -> [SKIP][567] ([i915#15643]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][568] ([i915#15643]) -> [SKIP][569] ([i915#14544] / [i915#15643]) +2 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][570] ([i915#15102]) -> [SKIP][571] ([i915#14544] / [i915#15102]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][572] ([i915#14544] / [i915#15102]) -> [SKIP][573] ([i915#15102]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg1: [SKIP][574] -> [SKIP][575] ([i915#4423]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][576] ([i915#1825]) -> [SKIP][577] ([i915#14544] / [i915#1825]) +17 other tests skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][578] ([i915#15102] / [i915#3458]) -> [SKIP][579] ([i915#10433] / [i915#15102] / [i915#3458]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][580] ([i915#5439]) -> [SKIP][581] ([i915#14544] / [i915#5439]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][582] ([i915#4423] / [i915#8708]) -> [SKIP][583] ([i915#8708]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][584] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][585] ([i915#15102] / [i915#3458]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][586] ([i915#15102] / [i915#3023]) -> [SKIP][587] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][588] ([i915#1187] / [i915#12713]) -> [SKIP][589] ([i915#13331] / [i915#14544]) [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][590] ([i915#13688]) -> [SKIP][591] ([i915#13688] / [i915#14544]) [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-dg1: [SKIP][592] ([i915#15709] / [i915#4423]) -> [SKIP][593] ([i915#15709]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: [SKIP][594] ([i915#15709]) -> [SKIP][595] ([i915#14544] / [i915#15709]) +4 other tests skip [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: [SKIP][596] ([i915#13958]) -> [SKIP][597] ([i915#13958] / [i915#14544]) +1 other test skip [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: [SKIP][598] ([i915#9685]) -> [SKIP][599] ([i915#14544] / [i915#9685]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][600] ([i915#6524]) -> [SKIP][601] ([i915#14544] / [i915#6524]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_prime@d3hot.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][602] ([i915#11520]) -> [SKIP][603] ([i915#11520] / [i915#14544]) +3 other tests skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: [SKIP][604] ([i915#11520] / [i915#14544]) -> [SKIP][605] ([i915#11520]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-dg1: [SKIP][606] ([i915#1072] / [i915#9732]) -> [SKIP][607] ([i915#1072] / [i915#4423] / [i915#9732]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-18/igt@kms_psr@fbc-pr-primary-page-flip.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-16/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: [SKIP][608] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][609] ([i915#1072] / [i915#9732]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@kms_psr@fbc-psr2-basic.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-13/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][610] ([i915#1072] / [i915#9732]) -> [SKIP][611] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-primary-render: - shard-rkl: [SKIP][612] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][613] ([i915#1072] / [i915#9732]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_psr@pr-primary-render.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-8/igt@kms_psr@pr-primary-render.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: [SKIP][614] ([i915#3555]) -> [SKIP][615] ([i915#14544] / [i915#3555]) +1 other test skip [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_scaling_modes@scaling-mode-none.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][616] ([i915#14544] / [i915#2434]) -> [SKIP][617] ([i915#2434]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@perf@mi-rpc.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-4/igt@perf@mi-rpc.html * igt@prime_vgem@basic-read: - shard-rkl: [SKIP][618] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][619] ([i915#3291] / [i915#3708]) [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@prime_vgem@basic-read.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-rkl-7/igt@prime_vgem@basic-read.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#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#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [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#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#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [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#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [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#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#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_8807 -> IGTPW_14791 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18167: 90a49598c224945b556bee26d693fade1b8bdb3a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14791: 14791 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ 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_14791/index.html [-- Attachment #2: Type: text/html, Size: 211932 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/kms_cursor_legacy: relax checks on MTK 2026-03-19 3:49 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-03-20 15:06 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2026-03-20 15:06 UTC (permalink / raw) To: igt-dev; +Cc: Xiandong Wang, I915-ci-infra Hi igt-dev, On 2026-03-19 at 03:49:24 -0000, Patchwork wrote: > == Series Details == > > Series: tests/kms_cursor_legacy: relax checks on MTK > URL : https://patchwork.freedesktop.org/series/163364/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_18167_full -> IGTPW_14791_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_14791_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_14791_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_14791/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_14791_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_balancer@full-late-pulse: > - shard-mtlp: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-8/igt@gem_exec_balancer@full-late-pulse.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-mtlp-8/igt@gem_exec_balancer@full-late-pulse.html > Not related to tests/kms_cursor_legacy Regards, Kamil > > New tests > --------- > > New tests have been introduced between CI_DRM_18167_full and IGTPW_14791_full: > > ### New IGT tests (5) ### > > * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-3: > - Statuses : 1 skip(s) > - Exec time: [0.0] s > > * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-3: > - Statuses : 1 skip(s) > - Exec time: [0.0] s > > * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: > - Statuses : 1 skip(s) > - Exec time: [0.0] s > > * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3: > - Statuses : 1 skip(s) > - Exec time: [0.0] s > > * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-3: > - Statuses : 1 pass(s) > - Exec time: [3.47] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_14791_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@blit-reloc-purge-cache: > - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14791/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html > ...cut... ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_cursor_legacy: relax checks on MTK 2026-03-17 8:40 [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK Xiandong Wang ` (3 preceding siblings ...) 2026-03-19 3:49 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-03-19 7:31 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-19 7:31 UTC (permalink / raw) To: Xiandong Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 45508 bytes --] == Series Details == Series: tests/kms_cursor_legacy: relax checks on MTK URL : https://patchwork.freedesktop.org/series/163364/ State : success == Summary == CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14791_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14791_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#7059] / [Intel XE#7085]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +5 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#367] / [Intel XE#7354]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] ([Intel XE#7084]) +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652]) +8 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2321] / [Intel XE#7355]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2291]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2291]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#7571]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#4302]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][22] ([Intel XE#2049] / [Intel XE#2597]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2316]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#301]) +2 other tests fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +18 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2312]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4141]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +11 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2352] / [Intel XE#7399]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0: - shard-lnl: [PASS][35] -> [FAIL][36] ([Intel XE#7337]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-6/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-lnl-4/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#5021] / [Intel XE#7377]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7376] / [Intel XE#870]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2391] / [Intel XE#6927]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2505] / [Intel XE#7447]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1489]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1406] / [Intel XE#2414]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2168] / [Intel XE#7444]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1499]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_vrr@flip-suspend.html * igt@xe_eudebug@vma-ufence: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4837]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@xe_eudebug@vma-ufence.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-rebind-imm: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7136]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6874]) +17 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7138]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1420]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2284] / [Intel XE#7370]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@xe_pm@d3cold-basic.html * igt@xe_pxp@pxp-stale-queue-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4733] / [Intel XE#7417]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html * igt@xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#944]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@xe_query@multigpu-query-engines.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [ABORT][57] ([Intel XE#7578]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunplug-rescan: - shard-bmg: [SKIP][59] ([Intel XE#6779]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][61] ([Intel XE#2291]) -> [PASS][62] +2 other tests pass [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [SKIP][63] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][64] +1 other test pass [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][65] ([Intel XE#2316]) -> [PASS][66] +4 other tests pass [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][67] ([Intel XE#301]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-bmg: [INCOMPLETE][69] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][70] +1 other test pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3: - shard-bmg: [DMESG-FAIL][71] ([Intel XE#5545]) -> [PASS][72] +1 other test pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][73] ([Intel XE#1503]) -> [PASS][74] +1 other test pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_hdr@invalid-hdr.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][75] ([Intel XE#7086]) -> [PASS][76] +1 other test pass [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][77] ([Intel XE#7340]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][79] ([Intel XE#1435]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [FAIL][81] ([Intel XE#5937]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_exec_system_allocator@fault-threads-benchmark: - shard-bmg: [FAIL][83] -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@xe_exec_system_allocator@fault-threads-benchmark.html * igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset: - shard-bmg: [SKIP][85] ([Intel XE#6703]) -> [PASS][86] +113 other tests pass [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html * igt@xe_exec_system_allocator@twice-large-mmap: - shard-bmg: [SKIP][87] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][88] +2 other tests pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@xe_exec_system_allocator@twice-large-mmap.html #### Warnings #### * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][89] ([Intel XE#6703]) -> [SKIP][90] ([Intel XE#1124]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][91] ([Intel XE#6703]) -> [SKIP][92] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][93] ([Intel XE#6703]) -> [SKIP][94] ([Intel XE#2887]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_edid@dp-edid-read: - shard-bmg: [SKIP][95] ([Intel XE#6703]) -> [SKIP][96] ([Intel XE#2252]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][97] ([Intel XE#6703]) -> [SKIP][98] ([Intel XE#2390] / [Intel XE#6974]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-bmg: [SKIP][99] ([Intel XE#7194]) -> [FAIL][100] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][101] ([Intel XE#2341]) -> [FAIL][102] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@srm.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][103] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][104] ([Intel XE#2341]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_content_protection@uevent.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-bmg: [SKIP][105] ([Intel XE#6703]) -> [SKIP][106] ([Intel XE#2320]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#2321] / [Intel XE#7355]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#2244]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-busy-flip: - shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#2316]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@2x-busy-flip.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [SKIP][113] ([Intel XE#6703]) -> [INCOMPLETE][114] ([Intel XE#2049] / [Intel XE#2597]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][115] ([Intel XE#6703]) -> [SKIP][116] ([Intel XE#7178] / [Intel XE#7351]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][117] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][118] ([Intel XE#2311]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][119] ([Intel XE#2312]) -> [SKIP][120] ([Intel XE#2311]) +9 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][121] ([Intel XE#6703]) -> [SKIP][122] ([Intel XE#2311]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][123] ([Intel XE#4141]) -> [SKIP][124] ([Intel XE#2312]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][125] ([Intel XE#2312]) -> [SKIP][126] ([Intel XE#4141]) +8 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#4141]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][129] ([Intel XE#2311]) -> [SKIP][130] ([Intel XE#2312]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#2352] / [Intel XE#7399]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2312]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte: - shard-bmg: [SKIP][135] ([Intel XE#2313]) -> [SKIP][136] ([Intel XE#2312]) +8 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2313]) +6 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][139] ([Intel XE#2312]) -> [SKIP][140] ([Intel XE#2313]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][141] ([Intel XE#3544]) -> [SKIP][142] ([Intel XE#3374] / [Intel XE#3544]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][143] ([Intel XE#6703]) -> [SKIP][144] ([Intel XE#6901]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][145] ([Intel XE#6703]) -> [SKIP][146] ([Intel XE#7591]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-bmg: [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#7283]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#2763] / [Intel XE#6886]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#1489]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-bmg: [SKIP][153] ([Intel XE#6703]) -> [SKIP][154] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#1435]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@xe_eudebug@multigpu-basic-client: - shard-bmg: [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#4837]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@xe_eudebug@multigpu-basic-client.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#7140]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-9/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm: - shard-bmg: [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#7136]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@many-queues-basic: - shard-bmg: [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#6874]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@xe_exec_multi_queue@many-queues-basic.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind: - shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#7138]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#2284] / [Intel XE#7370]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [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#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7337 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8807 -> IGTPW_14791 * Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a IGTPW_14791: 14791 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6 xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a: 90a49598c224945b556bee26d693fade1b8bdb3a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14791/index.html [-- Attachment #2: Type: text/html, Size: 54942 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-30 1:46 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-17 8:40 [PATCH i-g-t v2 0/1] tests/kms_cursor_legacy: relax checks on MTK Xiandong Wang 2026-03-17 8:40 ` [PATCH i-g-t v2 1/1] " Xiandong Wang 2026-04-27 2:44 ` Jason-JH Lin (林睿祥) 2026-04-30 1:46 ` 回复: " Xiandong Wang (王先冬) 2026-03-17 21:27 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-03-17 21:46 ` ✓ i915.CI.BAT: " Patchwork 2026-03-19 3:49 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-20 15:06 ` Kamil Konieczny 2026-03-19 7:31 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox