* [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary @ 2025-09-01 10:10 Jouni Högander 2025-09-01 10:21 ` Jani Nikula ` (2 more replies) 0 siblings, 3 replies; 6+ messages in thread From: Jouni Högander @ 2025-09-01 10:10 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Jouni Högander PSR idle frames in VBT binary is a 4 bits wide bitfield. Checking if it's below 0 or over 15 doesn't make sense. Remove these checks. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- drivers/gpu/drm/i915/display/intel_bios.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c index 7d7193a05d88..3596dce84c28 100644 --- a/drivers/gpu/drm/i915/display/intel_bios.c +++ b/drivers/gpu/drm/i915/display/intel_bios.c @@ -1567,10 +1567,7 @@ parse_psr(struct intel_display *display, panel->vbt.psr.full_link = psr_table->full_link; panel->vbt.psr.require_aux_wakeup = psr_table->require_aux_to_wakeup; - - /* Allowed VBT values goes from 0 to 15 */ - panel->vbt.psr.idle_frames = psr_table->idle_frames < 0 ? 0 : - psr_table->idle_frames > 15 ? 15 : psr_table->idle_frames; + panel->vbt.psr.idle_frames = psr_table->idle_frames; /* * New psr options 0=500us, 1=100us, 2=2500us, 3=0us -- 2.43.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary 2025-09-01 10:10 [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary Jouni Högander @ 2025-09-01 10:21 ` Jani Nikula 2025-09-03 10:50 ` Hogander, Jouni 2025-09-01 12:51 ` ✓ i915.CI.BAT: success for " Patchwork 2025-09-01 17:54 ` ✗ i915.CI.Full: failure " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Jani Nikula @ 2025-09-01 10:21 UTC (permalink / raw) To: Jouni Högander, intel-gfx, intel-xe; +Cc: Jouni Högander On Mon, 01 Sep 2025, Jouni Högander <jouni.hogander@intel.com> wrote: > PSR idle frames in VBT binary is a 4 bits wide bitfield. Checking if it's > below 0 or over 15 doesn't make sense. Remove these checks. > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_bios.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c > index 7d7193a05d88..3596dce84c28 100644 > --- a/drivers/gpu/drm/i915/display/intel_bios.c > +++ b/drivers/gpu/drm/i915/display/intel_bios.c > @@ -1567,10 +1567,7 @@ parse_psr(struct intel_display *display, > > panel->vbt.psr.full_link = psr_table->full_link; > panel->vbt.psr.require_aux_wakeup = psr_table->require_aux_to_wakeup; > - > - /* Allowed VBT values goes from 0 to 15 */ > - panel->vbt.psr.idle_frames = psr_table->idle_frames < 0 ? 0 : > - psr_table->idle_frames > 15 ? 15 : psr_table->idle_frames; > + panel->vbt.psr.idle_frames = psr_table->idle_frames; > > /* > * New psr options 0=500us, 1=100us, 2=2500us, 3=0us -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary 2025-09-01 10:21 ` Jani Nikula @ 2025-09-03 10:50 ` Hogander, Jouni 0 siblings, 0 replies; 6+ messages in thread From: Hogander, Jouni @ 2025-09-03 10:50 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, jani.nikula@linux.intel.com On Mon, 2025-09-01 at 13:21 +0300, Jani Nikula wrote: > On Mon, 01 Sep 2025, Jouni Högander <jouni.hogander@intel.com> wrote: > > PSR idle frames in VBT binary is a 4 bits wide bitfield. Checking > > if it's > > below 0 or over 15 doesn't make sense. Remove these checks. > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > > Reviewed-by: Jani Nikula <jani.nikula@intel.com> Thank you for checking my patch. This is now pushed to drm-intel-next. BR, Jouni Högander > > > --- > > drivers/gpu/drm/i915/display/intel_bios.c | 5 +---- > > 1 file changed, 1 insertion(+), 4 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_bios.c > > b/drivers/gpu/drm/i915/display/intel_bios.c > > index 7d7193a05d88..3596dce84c28 100644 > > --- a/drivers/gpu/drm/i915/display/intel_bios.c > > +++ b/drivers/gpu/drm/i915/display/intel_bios.c > > @@ -1567,10 +1567,7 @@ parse_psr(struct intel_display *display, > > > > panel->vbt.psr.full_link = psr_table->full_link; > > panel->vbt.psr.require_aux_wakeup = psr_table- > > >require_aux_to_wakeup; > > - > > - /* Allowed VBT values goes from 0 to 15 */ > > - panel->vbt.psr.idle_frames = psr_table->idle_frames < 0 ? > > 0 : > > - psr_table->idle_frames > 15 ? 15 : psr_table- > > >idle_frames; > > + panel->vbt.psr.idle_frames = psr_table->idle_frames; > > > > /* > > * New psr options 0=500us, 1=100us, 2=2500us, 3=0us > ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary 2025-09-01 10:10 [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary Jouni Högander 2025-09-01 10:21 ` Jani Nikula @ 2025-09-01 12:51 ` Patchwork 2025-09-01 17:54 ` ✗ i915.CI.Full: failure " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-09-01 12:51 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3066 bytes --] == Series Details == Series: drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary URL : https://patchwork.freedesktop.org/series/153792/ State : success == Summary == CI Bug Log - changes from CI_DRM_17104 -> Patchwork_153792v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/index.html Participating hosts (44 -> 42) ------------------------------ Missing (2): bat-jsl-1 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_153792v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/bat-apl-1/igt@dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/bat-apl-1/igt@dmabuf@all-tests.html * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#12904]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/bat-arlh-3/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/bat-arls-5/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 Build changes ------------- * Linux: CI_DRM_17104 -> Patchwork_153792v1 CI-20190529: 20190529 CI_DRM_17104: f7561134335fe13555f77342fa1f17b38e466907 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8519: 8519 Patchwork_153792v1: f7561134335fe13555f77342fa1f17b38e466907 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/index.html [-- Attachment #2: Type: text/html, Size: 3977 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary 2025-09-01 10:10 [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary Jouni Högander 2025-09-01 10:21 ` Jani Nikula 2025-09-01 12:51 ` ✓ i915.CI.BAT: success for " Patchwork @ 2025-09-01 17:54 ` Patchwork 2025-09-03 10:23 ` Hogander, Jouni 2 siblings, 1 reply; 6+ messages in thread From: Patchwork @ 2025-09-01 17:54 UTC (permalink / raw) To: Jouni Högander; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 140403 bytes --] == Series Details == Series: drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary URL : https://patchwork.freedesktop.org/series/153792/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17104_full -> Patchwork_153792v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_153792v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_153792v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_153792v1_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rc6_residency@rc6-fence: - shard-rkl: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-rkl: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1: - shard-rkl: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg1: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3.html New tests --------- New tests have been introduced between CI_DRM_17104_full and Patchwork_153792v1_full: ### New IGT tests (11) ### * igt@kms_flip@2x-tiling-y: - Statuses : - Exec time: [None] s * igt@kms_flip@basic-big-joiner: - Statuses : - Exec time: [None] s * igt@kms_flip@basic-busy-flip-before-cursor-legacy: - Statuses : - Exec time: [None] s * igt@kms_flip@fbc-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - Statuses : - Exec time: [None] s * igt@kms_flip@lic-type-0: - Statuses : - Exec time: [None] s * igt@kms_flip@non-uhbr-mst: - Statuses : - Exec time: [None] s * igt@kms_flip@psr-2p-scndscrn-cur-indfb-draw-blt: - Statuses : - Exec time: [None] s * igt@kms_flip@simple-lease: - Statuses : - Exec time: [None] s * igt@kms_flip@single-wait-for-submit-submitted: - Statuses : - Exec time: [None] s * igt@kms_flip@sliced: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in Patchwork_153792v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2-9: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@eof: - shard-rkl: [PASS][10] -> [SKIP][11] ([i915#14544] / [i915#2582]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@fbdev@eof.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@fbdev@eof.html * igt@fbdev@info: - shard-glk10: NOTRUN -> [SKIP][12] ([i915#1849]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@fbdev@info.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_basic@multigpu-create-close.html - shard-dg2-9: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_busy@semaphore.html - shard-dg2-9: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#14544] / [i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][18] -> [INCOMPLETE][19] ([i915#13356]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-8/igt@gem_ccs@suspend-resume.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#12392]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][23] -> [INCOMPLETE][24] ([i915#12353]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_ctx_isolation@preservation-s3.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2-9: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@rcs0: - shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#5882]) +7 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_ctx_persistence@saturated-hostile-nopreempt@rcs0.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: [PASS][29] -> [ABORT][30] ([i915#11713] / [i915#14756]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-tglu-2/igt@gem_exec_big@single.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_parallel@fds@bcs0: - shard-rkl: NOTRUN -> [DMESG-WARN][32] ([i915#12964]) +3 other tests dmesg-warn [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_exec_parallel@fds@bcs0.html * igt@gem_exec_params@secure-non-root: - shard-dg2-9: NOTRUN -> [SKIP][33] +15 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#3281]) +10 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_schedule@submit-early-slice: - shard-glk: [PASS][38] -> [DMESG-WARN][39] ([i915#118]) +1 other test dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-glk9/igt@gem_exec_schedule@submit-early-slice.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@gem_exec_schedule@submit-early-slice.html * igt@gem_fence_thrash@bo-copy: - shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_fence_thrash@bo-copy.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#2190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][45] -> [TIMEOUT][46] ([i915#5493]) +1 other test timeout [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#8289]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_media_fill@media-fill.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_mmap@big-bo.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-14/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#4077]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@display: - shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [PASS][60] -> [TIMEOUT][61] ([i915#12917] / [i915#12964]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#4270]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@read-bad-handle: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#14544] / [i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#4079]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4885]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#3323]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#4958]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4958]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#2527]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gen9_exec_parse@allowed-all.html - shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#2856]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#14073]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html * igt@i915_module_load@reload-no-display: - shard-dg1: [PASS][80] -> [DMESG-WARN][81] ([i915#13029] / [i915#14545]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg1-17/igt@i915_module_load@reload-no-display.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-15/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][82] -> [DMESG-WARN][83] ([i915#14545]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-8/igt@i915_module_load@resize-bar.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#11681] / [i915#6621]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#11681] / [i915#6621]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][87] -> [INCOMPLETE][88] ([i915#13729] / [i915#13821]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb1/igt@i915_pm_rps@reset.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#11681]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#11681]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][91] +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][92] -> [DMESG-FAIL][93] ([i915#12942]) +1 other test dmesg-fail [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@i915_selftest@live@gt_pm.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@i915_selftest@live@gt_pm.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#7707]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][96] ([i915#1769]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#5286]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#5286]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][100] -> [FAIL][101] ([i915#5138]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3638]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5190]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#5190]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5190]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#6095]) +181 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#10307] / [i915#6095]) +49 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#12313]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#12313]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#14098] / [i915#6095]) +34 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][112] +237 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#12313]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#6095]) +93 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#12805]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6095]) +39 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#6095]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#6095]) +36 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#10307] / [i915#10434] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +39 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#11151] / [i915#14544] / [i915#7828]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#11151] / [i915#7828]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_color@degamma: - shard-rkl: [PASS][127] -> [SKIP][128] ([i915#12655] / [i915#14544]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_color@degamma.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_color@degamma.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#3116] / [i915#3299]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#9424]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_content_protection@lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#9424]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_content_protection@lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6944] / [i915#9424]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#7118] / [i915#9424]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][136] ([i915#13566]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#3555]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#13049]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#13049]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#13049]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x128: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544]) +9 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#13049]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#13046] / [i915#5354]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - shard-rkl: [PASS][147] -> [SKIP][148] ([i915#11190] / [i915#14544]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-rkl: [PASS][149] -> [SKIP][150] ([i915#14544]) +37 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-rkl: [PASS][151] -> [FAIL][152] ([i915#2346]) +1 other test fail [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#9067]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3804]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][156] -> [SKIP][157] ([i915#1257]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-11/igt@kms_dp_aux_dev.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-6/igt@kms_dp_aux_dev.html - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#1257]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#8812]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3469]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-1x: - shard-rkl: [PASS][162] -> [SKIP][163] ([i915#14544] / [i915#9738]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_feature_discovery@display-1x.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_feature_discovery@display-1x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#658]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#4881]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_flip@2x-dpms-vs-vblank-race.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3637] / [i915#9934]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#9934]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3637] / [i915#9934]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][170] -> [FAIL][171] ([i915#11832] / [i915#14600]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2-9: NOTRUN -> [SKIP][172] ([i915#9934]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][173] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: [PASS][174] -> [SKIP][175] ([i915#14544] / [i915#3637]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][176] ([i915#8381]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12745] / [i915#4839] / [i915#6113]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][178] ([i915#12745] / [i915#4839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][179] ([i915#12745]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][180] ([i915#12745] / [i915#6113]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-rkl: [PASS][181] -> [SKIP][182] ([i915#14544] / [i915#3555]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#2672] / [i915#3555]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#2672]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#2672] / [i915#3555] / [i915#5190]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#2672]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/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-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#2672]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8708]) +7 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][193] +38 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][194] +41 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite: - shard-rkl: [PASS][195] -> [SKIP][196] ([i915#14544] / [i915#1849] / [i915#5354]) +9 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][197] ([i915#10055]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#3458]) +8 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#8708]) +12 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#5354]) +21 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-glk10: NOTRUN -> [SKIP][201] +443 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#14544] / [i915#1849] / [i915#5354]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#10433] / [i915#3458]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3458]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8708]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5354]) +11 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [PASS][208] -> [SKIP][209] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#12713]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#12713]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_hdr@invalid-hdr.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_hdr@invalid-hdr.html * igt@kms_invalid_mode@bad-hsync-start: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#14544] / [i915#3555] / [i915#8826]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-start.html * igt@kms_invalid_mode@bad-vsync-start: - shard-rkl: [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#3555] / [i915#8826]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-start.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#12388]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#10656]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#6301]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][221] +14 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@nonblocking-crc: - shard-glk10: NOTRUN -> [SKIP][222] ([i915#11190]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-rkl: [PASS][223] -> [SKIP][224] ([i915#14544] / [i915#8825]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-rkl: [PASS][225] -> [SKIP][226] ([i915#14544] / [i915#7294]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_plane_alpha_blend@alpha-basic.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][227] ([i915#10647] / [i915#12169]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][228] ([i915#10647]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#14259]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][230] ([i915#14259]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html - shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#14259]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#12247]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#12247]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/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-rkl: [PASS][234] -> [SKIP][235] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/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-a: - shard-rkl: [PASS][236] -> [SKIP][237] ([i915#12247] / [i915#14544]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b: - shard-rkl: [PASS][238] -> [SKIP][239] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9685]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-9: NOTRUN -> [SKIP][241] ([i915#3828]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][242] ([i915#9295]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html - shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#14104]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#14544] / [i915#4281]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#9519]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][247] -> [SKIP][248] ([i915#9519]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#6524]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_prime@d3hot.html - shard-dg2-9: NOTRUN -> [SKIP][251] ([i915#6524] / [i915#6805]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#11520]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][253] ([i915#11520]) +8 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#11520]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#11520]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#11520]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][257] ([i915#11520]) +11 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#11520]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#11520] / [i915#14544]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#9683]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9683]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#1072] / [i915#9732]) +15 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-pr-suspend: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#1072] / [i915#9732]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#1072] / [i915#9732]) +10 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#9732]) +8 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9732]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#5289]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#12755] / [i915#5190]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#3555]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#8623]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][273] -> [INCOMPLETE][274] ([i915#12276]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][275] ([i915#12276]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#9906]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][277] ([i915#9906]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_vrr@flip-basic-fastset.html - shard-dg2-9: NOTRUN -> [SKIP][278] ([i915#9906]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#3555]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#2437]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#2437]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html - shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#2437]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2437] / [i915#9412]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_writeback@writeback-pixel-formats.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#2437] / [i915#9412]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@blocking@0-rcs0: - shard-rkl: [PASS][286] -> [DMESG-WARN][287] ([i915#12964]) +11 other tests dmesg-warn [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@perf@blocking@0-rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][288] ([i915#14433]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-idle-check-all: - shard-rkl: [PASS][289] -> [FAIL][290] ([i915#4349]) +3 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@perf_pmu@most-busy-idle-check-all.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2-9: NOTRUN -> [SKIP][291] ([i915#8516]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#3708]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#3708]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-9: NOTRUN -> [SKIP][294] ([i915#9917]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: - shard-tglu-1: NOTRUN -> [FAIL][295] ([i915#12910]) +9 other tests fail [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][296] ([i915#12910]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#9917]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-rkl: [SKIP][298] ([i915#14544] / [i915#2582]) -> [PASS][299] +1 other test pass [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@fbdev@unaligned-read.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@fbdev@unaligned-read.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][300] ([i915#12964]) -> [PASS][301] +5 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_eio@in-flight-suspend.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg2: [FAIL][302] ([i915#5784]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-1/igt@gem_eio@kms.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: [TIMEOUT][304] ([i915#3778] / [i915#7016]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-1/igt@gem_exec_endless@dispatch@vcs0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [SKIP][306] ([i915#14544] / [i915#4270]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-3.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: [TIMEOUT][308] ([i915#12917] / [i915#12964]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@i915_module_load@reload-no-display: - shard-snb: [DMESG-WARN][310] ([i915#14545]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb7/igt@i915_module_load@reload-no-display.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][312] ([i915#13447]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][314] ([i915#12655] / [i915#3555]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-3/igt@kms_color@deep-color.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_color@deep-color.html * igt@kms_color@gamma: - shard-rkl: [SKIP][316] ([i915#12655] / [i915#14544]) -> [PASS][317] +1 other test pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_color@gamma.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_color@gamma.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-rkl: [FAIL][318] ([i915#2346]) -> [PASS][319] +1 other test pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][320] ([i915#3555]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-rkl: [SKIP][322] ([i915#14544]) -> [PASS][323] +52 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_draw_crc@draw-method-mmap-gtt.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_flip@flip-vs-dpms-on-nop-interruptible: - shard-rkl: [SKIP][324] ([i915#14544] / [i915#3637]) -> [PASS][325] +6 other tests pass [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-dg1: [DMESG-WARN][326] ([i915#4423]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg1-13/igt@kms_flip@flip-vs-panning-vs-hang.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-17/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: - shard-rkl: [FAIL][328] ([i915#14600]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html * igt@kms_flip_tiling@flip-change-tiling: - shard-rkl: [SKIP][330] ([i915#14544] / [i915#3555]) -> [PASS][331] +2 other tests pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip_tiling@flip-change-tiling.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-snb: [SKIP][332] -> [PASS][333] +7 other tests pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-rkl: [SKIP][334] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][335] +4 other tests pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][336] ([i915#3555] / [i915#8228]) -> [PASS][337] +2 other tests pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@bad-vsync-end: - shard-rkl: [SKIP][338] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][339] +2 other tests pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - shard-rkl: [SKIP][340] ([i915#11190] / [i915#14544]) -> [PASS][341] +1 other test pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_plane@pixel-format-source-clamping: - shard-rkl: [SKIP][342] ([i915#14544] / [i915#8825]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [SKIP][344] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b: - shard-rkl: [SKIP][346] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][347] +3 other tests pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a: - shard-rkl: [SKIP][348] ([i915#12247] / [i915#14544]) -> [PASS][349] +3 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-rkl: [SKIP][350] ([i915#14544] / [i915#8152]) -> [PASS][351] +2 other tests pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-rkl: [SKIP][352] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_pm_rpm@fences-dpms: - shard-rkl: [SKIP][354] ([i915#14544] / [i915#1849]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pm_rpm@fences-dpms.html * igt@kms_properties@plane-properties-legacy: - shard-rkl: [SKIP][356] ([i915#11521] / [i915#14544]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_properties@plane-properties-legacy.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][358] ([i915#11078]) -> [SKIP][359] ([i915#11078] / [i915#14544]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@device_reset@cold-reset-bound.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][360] ([i915#11078] / [i915#14544]) -> [SKIP][361] ([i915#11078]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][362] ([i915#6335]) -> [SKIP][363] ([i915#14544] / [i915#6335]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][364] ([i915#8562]) -> [SKIP][365] ([i915#14544] / [i915#8562]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_create@create-ext-set-pat.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][366] ([i915#14544] / [i915#280]) -> [SKIP][367] ([i915#280]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][368] ([i915#280]) -> [SKIP][369] ([i915#14544] / [i915#280]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][370] ([i915#4525]) -> [SKIP][371] ([i915#14544] / [i915#4525]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_exec_balancer@parallel-contexts.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: [SKIP][372] ([i915#14544] / [i915#4525]) -> [SKIP][373] ([i915#4525]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][374] ([i915#14544] / [i915#3281]) -> [SKIP][375] ([i915#3281]) +6 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: [SKIP][376] ([i915#3281]) -> [SKIP][377] ([i915#14544] / [i915#3281]) +8 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: [SKIP][378] ([i915#4613] / [i915#7582]) -> [SKIP][379] ([i915#14544] / [i915#4613] / [i915#7582]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][380] ([i915#14544] / [i915#4613]) -> [SKIP][381] ([i915#4613]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][382] ([i915#4613]) -> [SKIP][383] ([i915#14544] / [i915#4613]) +2 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-rkl: [SKIP][384] ([i915#14544] / [i915#284]) -> [SKIP][385] ([i915#284]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_media_vme.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][386] ([i915#3282]) -> [SKIP][387] ([i915#14544] / [i915#3282]) +3 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: [SKIP][388] ([i915#14544] / [i915#4270]) -> [TIMEOUT][389] ([i915#12964]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_pxp@fail-invalid-protected-context.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [TIMEOUT][390] ([i915#12917] / [i915#12964]) -> [SKIP][391] ([i915#14544] / [i915#4270]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][392] ([i915#14544] / [i915#3282]) -> [SKIP][393] ([i915#3282]) +5 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_readwrite@beyond-eob.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#8411]) -> [SKIP][395] ([i915#8411]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][396] ([i915#3297] / [i915#3323]) -> [SKIP][397] ([i915#14544] / [i915#3297] / [i915#3323]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_userptr_blits@dmabuf-sync.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#3297]) -> [SKIP][399] ([i915#3297]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][400] ([i915#14544] / [i915#2527]) -> [SKIP][401] ([i915#2527]) +3 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][402] ([i915#2527]) -> [SKIP][403] ([i915#14544] / [i915#2527]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#6412]) -> [SKIP][405] ([i915#6412]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@i915_module_load@resize-bar.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@i915_module_load@resize-bar.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][406] ([i915#14544] / [i915#6245]) -> [SKIP][407] ([i915#6245]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@i915_query@hwconfig_table.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: [SKIP][408] ([i915#12454] / [i915#12712]) -> [SKIP][409] ([i915#12454] / [i915#12712] / [i915#14544]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][410] ([i915#14544]) -> [SKIP][411] ([i915#9531]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][412] ([i915#14544]) -> [SKIP][413] ([i915#1769] / [i915#3555]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][414] ([i915#5286]) -> [SKIP][415] ([i915#14544]) +4 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][416] ([i915#14544]) -> [SKIP][417] ([i915#5286]) +5 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: [SKIP][418] ([i915#14544]) -> [SKIP][419] ([i915#3638]) +5 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][420] ([i915#14544]) -> [SKIP][421] +10 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][422] ([i915#14098] / [i915#6095]) -> [SKIP][423] ([i915#14544]) +8 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][424] ([i915#14544]) -> [SKIP][425] ([i915#12313]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][426] ([i915#12796]) -> [SKIP][427] ([i915#14544]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][428] ([i915#14544]) -> [SKIP][429] ([i915#14098] / [i915#6095]) +12 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][430] ([i915#3742]) -> [SKIP][431] ([i915#14544] / [i915#3742]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cdclk@plane-scaling.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][432] ([i915#11151] / [i915#7828]) -> [SKIP][433] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][434] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][435] ([i915#11151] / [i915#7828]) +11 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic: - shard-dg2: [FAIL][436] ([i915#7173]) -> [SKIP][437] ([i915#7118] / [i915#9424]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-11/igt@kms_content_protection@atomic.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-6/igt@kms_content_protection@atomic.html - shard-rkl: [SKIP][438] ([i915#7118] / [i915#9424]) -> [SKIP][439] ([i915#14544]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_content_protection@atomic.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][440] ([i915#14544]) -> [SKIP][441] ([i915#7118]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_content_protection@srm.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][442] ([i915#14544]) -> [SKIP][443] ([i915#7118] / [i915#9424]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_content_protection@type1.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][444] ([i915#14544]) -> [SKIP][445] ([i915#3555]) +3 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][446] ([i915#13049]) -> [SKIP][447] ([i915#14544]) +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x512.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: [SKIP][448] ([i915#14544]) -> [SKIP][449] ([i915#13049]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][450] ([i915#14544]) -> [SKIP][451] ([i915#4103]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-rkl: [SKIP][452] -> [SKIP][453] ([i915#14544]) +10 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][454] ([i915#9067]) -> [SKIP][455] ([i915#14544]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: [SKIP][456] ([i915#4103]) -> [SKIP][457] ([i915#14544]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][458] ([i915#9723]) -> [SKIP][459] ([i915#14544]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][460] ([i915#14544]) -> [SKIP][461] ([i915#9723]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-rkl: [SKIP][462] ([i915#1257]) -> [SKIP][463] ([i915#1257] / [i915#14544]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_dp_aux_dev.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][464] ([i915#13748]) -> [SKIP][465] ([i915#14544]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][466] ([i915#3555] / [i915#3840]) -> [SKIP][467] ([i915#14544]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#4854]) -> [SKIP][469] ([i915#4854]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_feature_discovery@chamelium.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][470] ([i915#1839]) -> [SKIP][471] ([i915#14544] / [i915#1839]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_feature_discovery@display-4x.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-rkl: [SKIP][472] ([i915#9934]) -> [SKIP][473] ([i915#14544] / [i915#9934]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#9934]) -> [SKIP][475] ([i915#9934]) +6 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][477] ([i915#12917] / [i915#12964]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#3555]) -> [SKIP][479] ([i915#2672] / [i915#3555]) +5 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][480] ([i915#2672] / [i915#3555]) -> [SKIP][481] ([i915#14544] / [i915#3555]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][482] -> [SKIP][483] ([i915#14544] / [i915#1849] / [i915#5354]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][484] ([i915#10433] / [i915#3458]) -> [SKIP][485] ([i915#3458]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][487] ([i915#1825]) +30 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][488] ([i915#3023]) -> [SKIP][489] ([i915#14544] / [i915#1849] / [i915#5354]) +17 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][491] ([i915#5439]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][493] ([i915#3023]) +23 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][494] ([i915#1825]) -> [SKIP][495] ([i915#14544] / [i915#1849] / [i915#5354]) +19 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][496] ([i915#3555] / [i915#8228]) -> [SKIP][497] ([i915#14544]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-rkl: [SKIP][498] ([i915#14544]) -> [SKIP][499] ([i915#3555] / [i915#8228]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_hdr@static-swap.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][500] ([i915#12339]) -> [SKIP][501] ([i915#12339] / [i915#14544]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: [SKIP][502] ([i915#10656] / [i915#14544]) -> [SKIP][503] ([i915#10656]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][504] ([i915#12394]) -> [SKIP][505] ([i915#12394] / [i915#14544]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: [SKIP][506] ([i915#14544]) -> [SKIP][507] ([i915#13958]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#6953] / [i915#8152]) -> [SKIP][509] ([i915#6953]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - shard-rkl: [SKIP][510] ([i915#12247]) -> [SKIP][511] ([i915#12247] / [i915#14544]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: [SKIP][512] ([i915#12247]) -> [SKIP][513] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][514] ([i915#12247] / [i915#14544]) -> [SKIP][515] ([i915#12247]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: - shard-rkl: [SKIP][516] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][517] ([i915#12247]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#5354]) -> [SKIP][519] ([i915#5354]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][520] ([i915#5354]) -> [SKIP][521] ([i915#14544] / [i915#5354]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: [SKIP][522] ([i915#9685]) -> [SKIP][523] ([i915#14544] / [i915#9685]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#3828]) -> [SKIP][525] ([i915#3828]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#9519]) -> [SKIP][527] ([i915#9519]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][528] ([i915#9519]) -> [SKIP][529] ([i915#14544] / [i915#9519]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][530] ([i915#11520]) -> [SKIP][531] ([i915#11520] / [i915#14544]) +4 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][532] ([i915#11520] / [i915#14544]) -> [SKIP][533] ([i915#11520]) +7 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#9683]) -> [SKIP][535] ([i915#9683]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][536] ([i915#9683]) -> [SKIP][537] ([i915#14544] / [i915#9683]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][538] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#9732]) +18 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][540] ([i915#1072] / [i915#9732]) -> [SKIP][541] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#9685]) -> [SKIP][543] ([i915#9685]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][544] ([i915#5289]) -> [SKIP][545] ([i915#14544]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][546] ([i915#14544]) -> [SKIP][547] ([i915#5289]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#3555]) -> [SKIP][549] ([i915#3555]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: [SKIP][550] ([i915#3555]) -> [SKIP][551] ([i915#14544] / [i915#3555]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][552] ([i915#3555]) -> [SKIP][553] ([i915#14544]) +1 other test skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_vrr@flip-dpms.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][554] ([i915#14544]) -> [SKIP][555] ([i915#9906]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][557] ([i915#2437] / [i915#9412]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#2434]) -> [SKIP][559] ([i915#2434]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@perf@mi-rpc.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][560] ([i915#2433]) -> [SKIP][561] ([i915#14544] / [i915#2433]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#9917]) -> [SKIP][563] ([i915#9917]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14756 [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#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#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#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [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#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [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#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [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#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [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#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [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#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [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#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#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738 [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 ------------- * Linux: CI_DRM_17104 -> Patchwork_153792v1 CI-20190529: 20190529 CI_DRM_17104: f7561134335fe13555f77342fa1f17b38e466907 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8519: 8519 Patchwork_153792v1: f7561134335fe13555f77342fa1f17b38e466907 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/index.html [-- Attachment #2: Type: text/html, Size: 189936 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ✗ i915.CI.Full: failure for drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary 2025-09-01 17:54 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-09-03 10:23 ` Hogander, Jouni 0 siblings, 0 replies; 6+ messages in thread From: Hogander, Jouni @ 2025-09-03 10:23 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 161580 bytes --] Hello All, Possible regression reported by CI are not related to my patch. See my inline comments below for more details. BR, Jouni Högander On Mon, 2025-09-01 at 17:54 +0000, Patchwork wrote: Patch Details Series: drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary URL: https://patchwork.freedesktop.org/series/153792/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/index.html CI Bug Log - changes from CI_DRM_17104_full -> Patchwork_153792v1_full Summary FAILURE Serious unknown changes coming with Patchwork_153792v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_153792v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (11 -> 11) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in Patchwork_153792v1_full: IGT changes Possible regressions * igt@i915_pm_rc6_residency@rc6-fence: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-fence.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-fence.html> +1 other test skip Seen earlier: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17115/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html> * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1: * shard-rkl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html> Similar failures seen earlier: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17079/shard-rkl-4/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible.html> * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3.html> Similar failures seen earlier: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17117/shard-dg1-14/igt@kms_flip@wf_vblank-ts-check.html New tests New tests have been introduced between CI_DRM_17104_full and Patchwork_153792v1_full: New IGT tests (11) * igt@kms_flip@2x-tiling-y: * Statuses : * Exec time: [None] s * igt@kms_flip@basic-big-joiner: * Statuses : * Exec time: [None] s * igt@kms_flip@basic-busy-flip-before-cursor-legacy: * Statuses : * Exec time: [None] s * igt@kms_flip@fbc-2p-primscrn-spr-indfb-draw-pwrite: * Statuses : * Exec time: [None] s * igt@kms_flip@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: * Statuses : * Exec time: [None] s * igt@kms_flip@lic-type-0: * Statuses : * Exec time: [None] s * igt@kms_flip@non-uhbr-mst: * Statuses : * Exec time: [None] s * igt@kms_flip@psr-2p-scndscrn-cur-indfb-draw-blt: * Statuses : * Exec time: [None] s * igt@kms_flip@simple-lease: * Statuses : * Exec time: [None] s * igt@kms_flip@single-wait-for-submit-submitted: * Statuses : * Exec time: [None] s * igt@kms_flip@sliced: * Statuses : * Exec time: [None] s Known issues Here are the changes found in Patchwork_153792v1_full that come from known issues: IGT changes Issues hit * igt@device_reset@unbind-cold-reset-rebind: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@fbdev@eof: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@fbdev@eof.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@fbdev@eof.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582>) +1 other test skip * igt@fbdev@info: * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@fbdev@info.html> (i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) * igt@gem_basic@multigpu-create-close: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) * igt@gem_busy@semaphore: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>) * igt@gem_ccs@block-multicopy-inplace: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_ccs@suspend-resume: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-8/igt@gem_ccs@suspend-resume.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@gem_ccs@suspend-resume.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html> (i915#12392<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392>) * igt@gem_create@create-ext-cpu-access-sanity-check: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) * igt@gem_ctx_isolation@preservation-s3: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_ctx_isolation@preservation-s3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html> (i915#12353<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353>) +1 other test incomplete * igt@gem_ctx_persistence@heartbeat-stop: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-stop.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) * igt@gem_ctx_persistence@saturated-hostile-nopreempt@rcs0: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_ctx_persistence@saturated-hostile-nopreempt@rcs0.html> (i915#5882<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882>) +7 other tests skip * igt@gem_ctx_sseu@engines: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_ctx_sseu@engines.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_exec_balancer@parallel-ordering: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip * igt@gem_exec_big@single: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-tglu-2/igt@gem_exec_big@single.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-3/igt@gem_exec_big@single.html> (i915#11713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713> / i915#14756<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14756>) * igt@gem_exec_fence@submit3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_exec_fence@submit3.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_parallel@fds@bcs0: * shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_exec_parallel@fds@bcs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +3 other tests dmesg-warn * igt@gem_exec_params@secure-non-root: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_exec_params@secure-non-root.html> +15 other tests skip * igt@gem_exec_reloc@basic-cpu-read: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +10 other tests skip * igt@gem_exec_reloc@basic-write-wc-active: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_exec_reloc@basic-write-wc-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +1 other test skip * igt@gem_exec_reloc@basic-write-wc-noreloc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_exec_reloc@basic-write-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +2 other tests skip * igt@gem_exec_schedule@semaphore-power: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_schedule@submit-early-slice: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-glk9/igt@gem_exec_schedule@submit-early-slice.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@gem_exec_schedule@submit-early-slice.html> (i915#118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118>) +1 other test dmesg-warn * igt@gem_fence_thrash@bo-copy: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_fence_thrash@bo-copy.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +2 other tests skip * igt@gem_huc_copy@huc-copy: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_lmem_swapping@random: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@gem_lmem_swapping@random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip * igt@gem_lmem_swapping@smem-oom@lmem0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) +1 other test timeout * igt@gem_lmem_swapping@verify-random: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) * igt@gem_media_fill@media-fill: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_media_fill@media-fill.html> (i915#8289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289>) * igt@gem_mmap@big-bo: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_mmap@big-bo.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip * igt@gem_mmap@short-mmap: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-14/igt@gem_mmap@short-mmap.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip * igt@gem_mmap_gtt@basic-small-bo-tiledy: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +7 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_mmap_gtt@basic-small-bo-tiledy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +2 other tests skip * igt@gem_mmap_gtt@zero-extend: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gem_mmap_gtt@zero-extend.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +7 other tests skip * igt@gem_mmap_wc@write-cpu-read-wc: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +1 other test skip * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_pread@display: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_pread@display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_pread@exhaustion: * shard-glk: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk5/igt@gem_pread@exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) * igt@gem_pxp@display-protected-crc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_pxp@display-protected-crc.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip * igt@gem_pxp@protected-encrypted-src-copy-not-readible: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_pxp@reject-modify-context-protection-on: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-on.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other tests skip * igt@gem_readwrite@read-bad-handle: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) * igt@gem_render_copy@y-tiled-ccs-to-linear: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-linear.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +6 other tests skip * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +1 other test skip * igt@gem_set_tiling_vs_blt@tiled-to-untiled: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) * igt@gem_softpin@evict-snoop: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_softpin@evict-snoop.html> (i915#4885<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>) * igt@gem_userptr_blits@dmabuf-sync: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) * igt@gem_userptr_blits@sd-probe: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_userptr_blits@sd-probe.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) * igt@gem_userptr_blits@unsync-unmap: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@unsync-unmap-after-close: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap-after-close.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gen9_exec_parse@allowed-all: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@gen9_exec_parse@allowed-all.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@gen9_exec_parse@allowed-all.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) * igt@gen9_exec_parse@allowed-single: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@gen9_exec_parse@allowed-single.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * igt@gen9_exec_parse@bb-start-param: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@gen9_exec_parse@bb-start-param.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +3 other tests skip * igt@gen9_exec_parse@valid-registers: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * igt@i915_drm_fdinfo@most-busy-check-all@bcs0: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html> (i915#14073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) +7 other tests skip * igt@i915_module_load@reload-no-display: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg1-17/igt@i915_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-15/igt@i915_module_load@reload-no-display.html> (i915#13029<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029> / i915#14545<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) * igt@i915_module_load@resize-bar: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-8/igt@i915_module_load@resize-bar.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-3/igt@i915_module_load@resize-bar.html> (i915#14545<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) * igt@i915_pm_freq_api@freq-suspend: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip * igt@i915_pm_rps@min-max-config-idle: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) * igt@i915_pm_rps@reset: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb1/igt@i915_pm_rps@reset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb7/igt@i915_pm_rps@reset.html> (i915#13729<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729> / i915#13821<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821>) * igt@i915_pm_rps@thresholds-idle: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) * igt@i915_pm_rps@thresholds-idle-park: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) * igt@i915_query@query-topology-unsupported: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@i915_query@query-topology-unsupported.html> +3 other tests skip * igt@i915_selftest@live@gt_pm: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@i915_selftest@live@gt_pm.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@i915_selftest@live@gt_pm.html> (i915#12942<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942>) +1 other test dmesg-fail * igt@intel_hwmon@hwmon-write: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@intel_hwmon@hwmon-write.html> (i915#7707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) * igt@kms_addfb_basic@bo-too-small-due-to-tiling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>) * igt@kms_big_fb@4-tiled-16bpp-rotate-90: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other test skip * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) * igt@kms_big_fb@linear-16bpp-rotate-90: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_big_fb@linear-16bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip * igt@kms_big_fb@y-tiled-64bpp-rotate-0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +4 other tests skip * igt@kms_big_fb@y-tiled-addfb-size-overflow: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +7 other tests skip * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +1 other test skip * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +181 other tests skip * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +49 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html> +237 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +93 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +7 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +36 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other tests skip * igt@kms_chamelium_edid@hdmi-edid-read: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +2 other tests skip * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +2 other tests skip * igt@kms_chamelium_hpd@dp-hpd-fast: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other test skip * igt@kms_chamelium_hpd@dp-hpd-storm: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) * igt@kms_chamelium_hpd@dp-hpd-storm-disable: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip * igt@kms_chamelium_hpd@hdmi-hpd-storm: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-storm.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip * igt@kms_color@degamma: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_color@degamma.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_color@degamma.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_content_protection@atomic: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_content_protection@atomic.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@dp-mst-type-0: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116> / i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) * igt@kms_content_protection@lic-type-1: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_content_protection@lic-type-1.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_content_protection@lic-type-1.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_content_protection@lic-type-1.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@mei-interface: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_content_protection@mei-interface.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@type1: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) * igt@kms_cursor_crc@cursor-onscreen-32x32: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_cursor_crc@cursor-onscreen-512x170: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_crc@cursor-onscreen-max-size: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_cursor_crc@cursor-random-512x512: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) * igt@kms_cursor_crc@cursor-rapid-movement-128x128: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +9 other tests skip * igt@kms_cursor_crc@cursor-sliding-32x10: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_cursor_crc@cursor-sliding-512x170: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +1 other test skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +2 other tests skip * igt@kms_cursor_legacy@cursor-vs-flip-toggle: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +37 other tests skip * igt@kms_cursor_legacy@flip-vs-cursor-toggle: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (i915#2346<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) +1 other test fail * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#9067<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dp_aux_dev: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-11/igt@kms_dp_aux_dev.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-6/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) * igt@kms_draw_crc@draw-method-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html> (i915#8812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812>) * igt@kms_dsc@dsc-basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_fbcon_fbt@psr: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_fbcon_fbt@psr.html> (i915#3469<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>) * igt@kms_feature_discovery@display-1x: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_feature_discovery@display-1x.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_feature_discovery@display-1x.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9738<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738>) * igt@kms_feature_discovery@psr2: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) * igt@kms_fence_pin_leak: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_fence_pin_leak.html> (i915#4881<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881>) * igt@kms_flip@2x-dpms-vs-vblank-race: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_flip@2x-dpms-vs-vblank-race.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_flip@2x-dpms-vs-vblank-race.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +1 other test skip * igt@kms_flip@2x-flip-vs-fences: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@2x-plain-flip-ts-check: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html> (i915#11832<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832> / i915#14600<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600>) +1 other test fail * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip * igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a1: * shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a1.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +1 other test dmesg-warn * igt@kms_flip@flip-vs-expired-vblank-interruptible: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +3 other tests skip * igt@kms_flip@flip-vs-fences-interruptible: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip@flip-vs-fences-interruptible.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) +1 other test skip * igt@kms_flip@flip-vs-suspend: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@kms_flip@flip-vs-suspend.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839> / i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) * igt@kms_flip@flip-vs-suspend-interruptible: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>) * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +5 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +7 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> +38 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html> +41 other tests skip * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +9 other tests skip * igt@kms_frontbuffer_tracking@fbc-tiling-y: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (i915#10055<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +8 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +12 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +21 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> +443 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +2 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +6 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-rte: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-rte.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +7 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +11 other tests skip * igt@kms_hdr@bpc-switch-dpms: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * igt@kms_hdr@brightness-with-hdr: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * igt@kms_hdr@invalid-hdr: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_hdr@invalid-hdr.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_hdr@invalid-hdr.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_hdr@invalid-hdr.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * igt@kms_invalid_mode@bad-hsync-start: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-start.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>) * igt@kms_invalid_mode@bad-vsync-start: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-start.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>) * igt@kms_joiner@basic-force-big-joiner: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) * igt@kms_joiner@basic-force-ultra-joiner: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) * igt@kms_panel_fitting@atomic-fastset: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html> +14 other tests skip * igt@kms_pipe_crc_basic@nonblocking-crc: * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@kms_pipe_crc_basic@nonblocking-crc.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190>) +4 other tests skip * igt@kms_plane@plane-panning-bottom-right-suspend: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * igt@kms_plane_alpha_blend@alpha-basic: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_plane_alpha_blend@alpha-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7294<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294>) * igt@kms_plane_alpha_blend@alpha-opaque-fb: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> / i915#12169<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) +1 other test fail * igt@kms_plane_multiple@tiling-yf: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_plane_multiple@tiling-yf.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) +1 other test skip * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +4 other tests skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +4 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +2 other tests skip * igt@kms_pm_dc@dc5-psr: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_dc@dc5-retention-flops: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_pm_dc@dc6-dpms: * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html> (i915#14104<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104>) * igt@kms_pm_dc@dc9-dpms: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>) * igt@kms_pm_rpm@modeset-lpsp-stress: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip * igt@kms_pm_rpm@modeset-non-lpsp-stress: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip * igt@kms_prime@d3hot: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +8 other tests skip * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +11 other tests skip * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_psr2_su@page_flip-nv12: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr2_su@page_flip-p010: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_psr2_su@page_flip-p010.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr@fbc-pr-primary-render: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_psr@fbc-pr-primary-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other tests skip * igt@kms_psr@fbc-pr-suspend: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_psr@fbc-pr-suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +5 other tests skip * igt@kms_psr@fbc-psr-cursor-plane-move: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +10 other tests skip * igt@kms_psr@fbc-psr-cursor-plane-onoff: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +8 other tests skip * igt@kms_psr@pr-no-drrs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr@pr-no-drrs.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +1 other test skip * igt@kms_psr@psr-sprite-mmap-cpu: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_scaling_modes@scaling-mode-full-aspect: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * igt@kms_setmode@basic: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_setmode@basic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_tiled_display@basic-test-pattern: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) * igt@kms_vblank@ts-continuation-dpms-suspend: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) * igt@kms_vrr@flip-basic-fastset: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_vrr@flip-dpms: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_vrr@flip-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_writeback@writeback-check-output: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) +1 other test skip * igt@kms_writeback@writeback-fb-id: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@kms_writeback@writeback-fb-id-xrgb2101010: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) +1 other test skip * igt@kms_writeback@writeback-pixel-formats: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-16/igt@kms_writeback@writeback-pixel-formats.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@kms_writeback@writeback-pixel-formats.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) * igt@perf@blocking@0-rcs0: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@perf@blocking@0-rcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@perf@blocking@0-rcs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +11 other tests dmesg-warn * igt@perf_pmu@module-unload: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-glk9/igt@perf_pmu@module-unload.html> (i915#14433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433>) * igt@perf_pmu@most-busy-idle-check-all: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@perf_pmu@most-busy-idle-check-all.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) +3 other tests fail * igt@perf_pmu@rc6@other-idle-gt0: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) * igt@prime_vgem@basic-fence-flip: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@prime_vgem@basic-fence-flip.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@prime_vgem@fence-write-hang: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@prime_vgem@fence-write-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@sriov_basic@enable-vfs-autoprobe-off: * shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-off.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) +1 other test skip * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) +9 other tests fail * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) Possible fixes * igt@fbdev@unaligned-read: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@fbdev@unaligned-read.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@fbdev@unaligned-read.html> +1 other test pass * igt@gem_eio@in-flight-suspend: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_eio@in-flight-suspend.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_eio@in-flight-suspend.html> +5 other tests pass * igt@gem_eio@kms: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-1/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-3/igt@gem_eio@kms.html> * igt@gem_exec_endless@dispatch@vcs0: * shard-dg2: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-1/igt@gem_exec_endless@dispatch@vcs0.html> (i915#3778<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778> / i915#7016<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@gem_exec_endless@dispatch@vcs0.html> +1 other test pass * igt@gem_pxp@reject-modify-context-protection-off-3: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-3.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html> * igt@gem_pxp@verify-pxp-stale-ctx-execution: * shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html> * igt@i915_module_load@reload-no-display: * shard-snb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb7/igt@i915_module_load@reload-no-display.html> (i915#14545<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb1/igt@i915_module_load@reload-no-display.html> * igt@i915_module_load@reload-with-fault-injection: * shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html> (i915#13447<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html> * igt@kms_color@deep-color: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-3/igt@kms_color@deep-color.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_color@deep-color.html> * igt@kms_color@gamma: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_color@gamma.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_color@gamma.html> +1 other test pass * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> +1 other test pass * igt@kms_dither@fb-8bpc-vs-panel-8bpc: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> * igt@kms_draw_crc@draw-method-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_draw_crc@draw-method-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_draw_crc@draw-method-mmap-gtt.html> +52 other tests pass * igt@kms_flip@flip-vs-dpms-on-nop-interruptible: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html> +6 other tests pass * igt@kms_flip@flip-vs-panning-vs-hang: * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg1-13/igt@kms_flip@flip-vs-panning-vs-hang.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg1-17/igt@kms_flip@flip-vs-panning-vs-hang.html> * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html> (i915#14600<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html> +1 other test pass * igt@kms_flip_tiling@flip-change-tiling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip_tiling@flip-change-tiling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_flip_tiling@flip-change-tiling.html> +2 other tests pass * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: * shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html> +7 other tests pass * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html> +4 other tests pass * igt@kms_hdr@static-toggle-suspend: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html> +2 other tests pass * igt@kms_invalid_mode@bad-vsync-end: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-end.html> +2 other tests pass * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html> +1 other test pass * igt@kms_plane@pixel-format-source-clamping: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping.html> * igt@kms_plane_scaling@invalid-num-scalers: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@invalid-num-scalers.html> * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html> +3 other tests pass * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html> +3 other tests pass * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html> +2 other tests pass * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> * igt@kms_pm_rpm@fences-dpms: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pm_rpm@fences-dpms.html> * igt@kms_properties@plane-properties-legacy: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html> (i915#11521<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_properties@plane-properties-legacy.html> Warnings * igt@device_reset@cold-reset-bound: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@device_reset@unbind-cold-reset-rebind: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@gem_create@create-ext-cpu-access-sanity-check: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) * igt@gem_create@create-ext-set-pat: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) * igt@gem_ctx_sseu@invalid-args: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_ctx_sseu@invalid-sseu: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) +1 other test skip * igt@gem_exec_balancer@parallel-contexts: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_exec_balancer@parallel-contexts.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) * igt@gem_exec_balancer@parallel-out-fence: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_exec_balancer@parallel-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +6 other tests skip * igt@gem_exec_reloc@basic-gtt-read: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +8 other tests skip * igt@gem_lmem_evict@dontneed-evict-race: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> / i915#7582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> / i915#7582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) * igt@gem_lmem_swapping@random-engines: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_lmem_swapping@verify-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip * igt@gem_media_vme: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_media_vme.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_media_vme.html> (i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>) * igt@gem_partial_pwrite_pread@writes-after-reads-display: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip * igt@gem_pxp@fail-invalid-protected-context: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_pxp@fail-invalid-protected-context.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@gem_pxp@reject-modify-context-protection-off-1: * shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_readwrite@beyond-eob: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_readwrite@beyond-eob.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@gem_readwrite@beyond-eob.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +5 other tests skip * igt@gem_set_tiling_vs_blt@tiled-to-untiled: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) +1 other test skip * igt@gem_userptr_blits@dmabuf-sync: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) * igt@gem_userptr_blits@unsync-unmap-cycles: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * igt@gen9_exec_parse@shadow-peek: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +3 other tests skip * igt@gen9_exec_parse@valid-registers: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip * igt@i915_module_load@resize-bar: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@i915_module_load@resize-bar.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>) * igt@i915_query@hwconfig_table: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@i915_query@hwconfig_table.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@i915_query@hwconfig_table.html> (i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>) * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_big_fb@4-tiled-16bpp-rotate-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +4 other tests skip * igt@kms_big_fb@4-tiled-addfb: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +5 other tests skip * igt@kms_big_fb@linear-32bpp-rotate-90: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +5 other tests skip * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +10 other tests skip * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +8 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: * shard-rkl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html> (i915#12796<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +12 other tests skip * igt@kms_cdclk@plane-scaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cdclk@plane-scaling.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cdclk@plane-scaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) * igt@kms_chamelium_edid@hdmi-edid-read: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +11 other tests skip * igt@kms_content_protection@atomic: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-11/igt@kms_content_protection@atomic.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-6/igt@kms_content_protection@atomic.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_content_protection@atomic.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_content_protection@atomic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_content_protection@srm: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_content_protection@srm.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_content_protection@srm.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) * igt@kms_content_protection@type1: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_content_protection@type1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip * igt@kms_cursor_crc@cursor-onscreen-32x32: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * igt@kms_cursor_crc@cursor-random-512x512: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_cursor_crc@cursor-rapid-movement-512x170: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +10 other tests skip * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#9067<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dirtyfb@psr-dirtyfb-ioctl: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) * igt@kms_dp_aux_dev: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dp_link_training@uhbr-mst: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dsc@dsc-with-bpc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_feature_discovery@chamelium: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_feature_discovery@chamelium.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) * igt@kms_feature_discovery@display-4x: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_feature_discovery@display-4x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_feature_discovery@display-4x.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * igt@kms_flip@2x-flip-vs-rmfb-interruptible: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +1 other test skip * igt@kms_flip@2x-plain-flip-interruptible: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +6 other tests skip * igt@kms_flip@absolute-wf_vblank-interruptible: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_flip@absolute-wf_vblank-interruptible.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +5 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +30 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +17 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> (i915#5439<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +23 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +19 other tests skip * igt@kms_hdr@bpc-switch-dpms: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_hdr@static-swap: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_hdr@static-swap.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_hdr@static-swap.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) * igt@kms_joiner@basic-ultra-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_joiner@invalid-modeset-big-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) * igt@kms_joiner@invalid-modeset-force-ultra-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_plane_multiple@2x-tiling-x: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) * igt@kms_plane_scaling@intel-max-src-size: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +1 other test skip * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +1 other test skip * igt@kms_pm_backlight@bad-brightness: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) * igt@kms_pm_backlight@basic-brightness: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) * igt@kms_pm_dc@dc3co-vpb-simulation: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_dc@dc5-retention-flops: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_pm_rpm@modeset-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +4 other tests skip * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +7 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr2_su@page_flip-nv12: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr@fbc-psr2-sprite-render: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +18 other tests skip * igt@kms_psr@psr-cursor-plane-move: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_setmode@invalid-clone-exclusive-crtc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_setmode@invalid-clone-single-crtc-stealing: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_vrr@flip-dpms: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-8/igt@kms_vrr@flip-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@kms_vrr@flip-dpms.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip * igt@kms_vrr@seamless-rr-switch-drrs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_writeback@writeback-fb-id-xrgb2101010: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) * igt@perf@mi-rpc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@perf@mi-rpc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@perf@mi-rpc.html> (i915#2434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) * igt@perf@unprivileged-single-ctx-counters: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html> (i915#2433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>) * igt@sriov_basic@bind-unbind-vf: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17104/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153792v1/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) +1 other test skip {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * Linux: CI_DRM_17104 -> Patchwork_153792v1 CI-20190529: 20190529 CI_DRM_17104: f7561134335fe13555f77342fa1f17b38e466907 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8519: 8519 Patchwork_153792v1: f7561134335fe13555f77342fa1f17b38e466907 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 191204 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-09-03 10:50 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-09-01 10:10 [PATCH] drm/i915/bios: Remove unnecessary checks of PSR idle frames in VBT binary Jouni Högander 2025-09-01 10:21 ` Jani Nikula 2025-09-03 10:50 ` Hogander, Jouni 2025-09-01 12:51 ` ✓ i915.CI.BAT: success for " Patchwork 2025-09-01 17:54 ` ✗ i915.CI.Full: failure " Patchwork 2025-09-03 10:23 ` Hogander, Jouni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).