* [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format
@ 2024-11-25 17:10 Jeevan B
2024-11-25 18:22 ` Rodrigo Vivi
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Jeevan B @ 2024-11-25 17:10 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Jeevan B
Updated cursor_fb3 framebuffer creation in the cursor subtest function
to use linear tiling instead of x-tile. As x-tile is no longer supported
on latest platforms.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_rpm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/kms_pm_rpm.c b/tests/intel/kms_pm_rpm.c
index 990c50915..aeeaf69f7 100644
--- a/tests/intel/kms_pm_rpm.c
+++ b/tests/intel/kms_pm_rpm.c
@@ -1199,7 +1199,7 @@ static void cursor_subtest(bool dpms)
igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_ARGB8888,
DRM_FORMAT_MOD_LINEAR, &cursor_fb2);
igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_XRGB8888,
- I915_FORMAT_MOD_X_TILED, &cursor_fb3);
+ DRM_FORMAT_MOD_LINEAR, &cursor_fb3);
fill_igt_fb(&cursor_fb1, 0xFF00FFFF);
fill_igt_fb(&cursor_fb2, 0xFF00FF00);
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-25 17:10 [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format Jeevan B @ 2024-11-25 18:22 ` Rodrigo Vivi 2024-11-26 12:01 ` Sharma, Swati2 2024-11-26 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Rodrigo Vivi @ 2024-11-25 18:22 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev, swati2.sharma On Mon, Nov 25, 2024 at 10:40:28PM +0530, Jeevan B wrote: > Updated cursor_fb3 framebuffer creation in the cursor subtest function > to use linear tiling instead of x-tile. As x-tile is no longer supported > on latest platforms. Shouldn't we then add a new format without removing the old ones? Otherwise it looks like you are removing coverage on old platforms. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/intel/kms_pm_rpm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/kms_pm_rpm.c b/tests/intel/kms_pm_rpm.c > index 990c50915..aeeaf69f7 100644 > --- a/tests/intel/kms_pm_rpm.c > +++ b/tests/intel/kms_pm_rpm.c > @@ -1199,7 +1199,7 @@ static void cursor_subtest(bool dpms) > igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_ARGB8888, > DRM_FORMAT_MOD_LINEAR, &cursor_fb2); > igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_XRGB8888, > - I915_FORMAT_MOD_X_TILED, &cursor_fb3); > + DRM_FORMAT_MOD_LINEAR, &cursor_fb3); > > fill_igt_fb(&cursor_fb1, 0xFF00FFFF); > fill_igt_fb(&cursor_fb2, 0xFF00FF00); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-25 18:22 ` Rodrigo Vivi @ 2024-11-26 12:01 ` Sharma, Swati2 2024-11-29 8:11 ` Juha-Pekka Heikkilä 0 siblings, 1 reply; 8+ messages in thread From: Sharma, Swati2 @ 2024-11-26 12:01 UTC (permalink / raw) To: Rodrigo Vivi, Jeevan B; +Cc: igt-dev Hi Rodrigo, On 25-11-2024 11:52 pm, Rodrigo Vivi wrote: > On Mon, Nov 25, 2024 at 10:40:28PM +0530, Jeevan B wrote: >> Updated cursor_fb3 framebuffer creation in the cursor subtest function >> to use linear tiling instead of x-tile. As x-tile is no longer supported >> on latest platforms. > Shouldn't we then add a new format without removing the old ones? > Otherwise it looks like you are removing coverage on old platforms. Is there any specific reason why x tiling was used initially? Any idea? Isn't linear tiling common across all platforms? >> Signed-off-by: Jeevan B <jeevan.b@intel.com> >> --- >> tests/intel/kms_pm_rpm.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/tests/intel/kms_pm_rpm.c b/tests/intel/kms_pm_rpm.c >> index 990c50915..aeeaf69f7 100644 >> --- a/tests/intel/kms_pm_rpm.c >> +++ b/tests/intel/kms_pm_rpm.c >> @@ -1199,7 +1199,7 @@ static void cursor_subtest(bool dpms) >> igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_ARGB8888, >> DRM_FORMAT_MOD_LINEAR, &cursor_fb2); >> igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_XRGB8888, >> - I915_FORMAT_MOD_X_TILED, &cursor_fb3); >> + DRM_FORMAT_MOD_LINEAR, &cursor_fb3); >> >> fill_igt_fb(&cursor_fb1, 0xFF00FFFF); >> fill_igt_fb(&cursor_fb2, 0xFF00FF00); >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-26 12:01 ` Sharma, Swati2 @ 2024-11-29 8:11 ` Juha-Pekka Heikkilä 0 siblings, 0 replies; 8+ messages in thread From: Juha-Pekka Heikkilä @ 2024-11-29 8:11 UTC (permalink / raw) To: Sharma, Swati2; +Cc: Rodrigo Vivi, Jeevan B, igt-dev On Tue, Nov 26, 2024 at 2:02 PM Sharma, Swati2 <swati2.sharma@intel.com> wrote: > > Hi Rodrigo, > > On 25-11-2024 11:52 pm, Rodrigo Vivi wrote: > > On Mon, Nov 25, 2024 at 10:40:28PM +0530, Jeevan B wrote: > >> Updated cursor_fb3 framebuffer creation in the cursor subtest function > >> to use linear tiling instead of x-tile. As x-tile is no longer supported > >> on latest platforms. > > Shouldn't we then add a new format without removing the old ones? > > Otherwise it looks like you are removing coverage on old platforms. > Is there any specific reason why x tiling was used initially? Any idea? > Isn't linear tiling common across all platforms? Look like that test will need to be looked at bit more detail than just switch the tiling. Anyway to me it look like Jeevan's patch is incorrect because this test seem to be trying something with fences, removing tiling here would invalidate the test. Probably there should be required gem_require_mappable_ggtt(..) unless the test can be otherwise rewritten. > >> Signed-off-by: Jeevan B <jeevan.b@intel.com> > >> --- > >> tests/intel/kms_pm_rpm.c | 2 +- > >> 1 file changed, 1 insertion(+), 1 deletion(-) > >> > >> diff --git a/tests/intel/kms_pm_rpm.c b/tests/intel/kms_pm_rpm.c > >> index 990c50915..aeeaf69f7 100644 > >> --- a/tests/intel/kms_pm_rpm.c > >> +++ b/tests/intel/kms_pm_rpm.c > >> @@ -1199,7 +1199,7 @@ static void cursor_subtest(bool dpms) > >> igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_ARGB8888, > >> DRM_FORMAT_MOD_LINEAR, &cursor_fb2); > >> igt_create_fb(drm_fd, 64, 64, DRM_FORMAT_XRGB8888, > >> - I915_FORMAT_MOD_X_TILED, &cursor_fb3); > >> + DRM_FORMAT_MOD_LINEAR, &cursor_fb3); > >> > >> fill_igt_fb(&cursor_fb1, 0xFF00FFFF); > >> fill_igt_fb(&cursor_fb2, 0xFF00FF00); > >> -- > >> 2.25.1 > >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-25 17:10 [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format Jeevan B 2024-11-25 18:22 ` Rodrigo Vivi @ 2024-11-26 0:33 ` Patchwork 2024-11-26 0:48 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-26 0:33 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2056 bytes --] == Series Details == Series: tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format URL : https://patchwork.freedesktop.org/series/141765/ State : success == Summary == CI Bug Log - changes from XEIGT_8125_BAT -> XEIGTPW_12195_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-pvc-2 Known issues ------------ Here are the changes found in XEIGTPW_12195_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3517]) +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][3] -> [SKIP][4] ([Intel XE#455]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8125 -> IGTPW_12195 * Linux: xe-2275-6510562075d8541c218e72188f9ef339f8ba371f -> xe-2276-ae312905c5a9fc7ce599a74422f068725101c475 IGTPW_12195: 12195 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f xe-2276-ae312905c5a9fc7ce599a74422f068725101c475: ae312905c5a9fc7ce599a74422f068725101c475 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/index.html [-- Attachment #2: Type: text/html, Size: 2667 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-25 17:10 [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format Jeevan B 2024-11-25 18:22 ` Rodrigo Vivi 2024-11-26 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2024-11-26 0:48 ` Patchwork 2024-11-26 2:19 ` ✗ i915.CI.Full: failure " Patchwork 2024-11-26 4:02 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-26 0:48 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev == Series Details == Series: tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format URL : https://patchwork.freedesktop.org/series/141765/ State : success == Summary == CI Bug Log - changes from IGT_8125 -> IGTPW_12195 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12195 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [FAIL][2] ([i915#12903]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/bat-rpls-4/igt@i915_pm_rpm@module-reload.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][3] ([i915#12903]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - {bat-arls-6}: [ABORT][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-arls-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/bat-arls-6/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8125 -> IGTPW_12195 * Linux: CI_DRM_15743 -> CI_DRM_15744 CI-20190529: 20190529 CI_DRM_15743: 6510562075d8541c218e72188f9ef339f8ba371f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15744: ae312905c5a9fc7ce599a74422f068725101c475 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12195: 12195 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-25 17:10 [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format Jeevan B ` (2 preceding siblings ...) 2024-11-26 0:48 ` ✓ i915.CI.BAT: " Patchwork @ 2024-11-26 2:19 ` Patchwork 2024-11-26 4:02 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-26 2:19 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev == Series Details == Series: tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format URL : https://patchwork.freedesktop.org/series/141765/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15744_full -> IGTPW_12195_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12195_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12195_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-dg2-9 Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12195_full: ### IGT changes ### #### Possible regressions #### * igt@gem_tiled_swapping@non-threaded: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb4/igt@gem_tiled_swapping@non-threaded.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb7/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][5] -> [DMESG-FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-3/igt@i915_selftest@live@gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: [PASS][7] -> [WARN][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-3/igt@i915_suspend@basic-s2idle-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-rkl: [PASS][9] -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-1/igt@perf_pmu@rc6@runtime-pm-gt0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@perf_pmu@rc6@runtime-pm-gt0.html #### Warnings #### * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [DMESG-FAIL][11] ([i915#12964]) -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html Known issues ------------ Here are the changes found in IGTPW_12195_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html * igt@fbdev@eof: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#2582]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@fbdev@eof.html * igt@fbdev@unaligned-write: - shard-dg2: [PASS][16] -> [SKIP][17] ([i915#2582]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-10/igt@fbdev@unaligned-write.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@fbdev@unaligned-write.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-rkl: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][24] ([i915#7297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][25] ([i915#12392] / [i915#7297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@gem_close_race@multigpu-basic-process.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#9310]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-5/igt@gem_compute@compute-square.html * igt@gem_ctx_engines@execute-allforone: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#2575]) +65 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@gem_ctx_engines@execute-allforone.html * igt@gem_ctx_persistence@hostile: - shard-dg1: NOTRUN -> [FAIL][29] ([i915#11980] / [i915#12580]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][30] ([i915#1099]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb2/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][39] ([i915#11965] / [i915#12558]) +2 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit3: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@gem_exec_fence@submit3.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-4/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5107]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-active.html - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +10 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +11 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][50] +86 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb1/igt@gem_exec_schedule@thriceslice.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-rkl: NOTRUN -> [DMESG-WARN][51] ([i915#12964]) +12 other tests dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@massive: - shard-dg2: [PASS][56] -> [SKIP][57] ([i915#12936]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-4/igt@gem_lmem_swapping@massive.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#12193]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#12936]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#284]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#284]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-3/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@isolation: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-6/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +8 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12964]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12917] / [i915#12964]) +2 other tests timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +15 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4879]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4879]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][91] -> [DMESG-FAIL][92] ([i915#12964]) +1 other test dmesg-fail [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@gem_workarounds@suspend-resume-context.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][93] +13 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-4/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@gen9_exec_parse@bb-oversize.html - shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#6412]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][101] ([i915#6412]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@i915_module_load@resize-bar.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6412]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#8399]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][105] -> [INCOMPLETE][106] ([i915#12455]) +1 other test incomplete [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][107] -> [FAIL][108] ([i915#12942]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@system-suspend: - shard-dg2: [PASS][109] -> [SKIP][110] ([i915#13014]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-1/igt@i915_pm_rpm@system-suspend.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#13014]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4387]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8437]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live: - shard-snb: [PASS][117] -> [ABORT][118] ([i915#12450]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb2/igt@i915_selftest@live.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb4/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - shard-snb: [PASS][119] -> [ABORT][120] ([i915#11703]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb2/igt@i915_selftest@live@sanitycheck.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb4/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk2/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@i915_selftest@mock@memory_region.html * igt@i915_selftest@mock@sanitycheck: - shard-tglu: [PASS][123] -> [ABORT][124] ([i915#13010]) +3 other tests abort [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-6/igt@i915_selftest@mock@sanitycheck.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@i915_selftest@mock@sanitycheck.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][125] -> [INCOMPLETE][126] ([i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#7707]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#7707]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4212]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#8709]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#9531]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][134] ([i915#9531]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#11808] / [i915#5956]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-mtlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#5286]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5286]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5286]) +7 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5286]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3638]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3638]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5190]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6187]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +102 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +34 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +64 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#12313]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-dg2: [PASS][153] -> [SKIP][154] +20 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#6095]) +161 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#12805]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6095]) +95 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#12805]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][160] ([i915#12805]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][161] ([i915#12805]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#6095]) +15 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#12313]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#12313]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#6095]) +34 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3742]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4087]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#7828]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7828]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#7828]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7828]) +10 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#7828]) +6 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#7828]) +6 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3116]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3116] / [i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3299]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#7116]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#7116] / [i915#7118]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-3/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#6944]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3555]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8814]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#13049]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2: - shard-rkl: [PASS][194] -> [DMESG-WARN][195] ([i915#12964]) +45 other tests dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [PASS][196] -> [DMESG-WARN][197] ([i915#12917] / [i915#12964]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#13049]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2: NOTRUN -> [SKIP][199] ([i915#13049]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][200] ([i915#12917] / [i915#12964]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-2.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][201] +6 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#4103]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#9809]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][205] -> [FAIL][206] ([i915#2346]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#9723]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9723]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3804]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#1257]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8812]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-1/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_dsc@dsc-basic.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840] / [i915#9159]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [PASS][220] -> [FAIL][221] ([i915#4767]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-6/igt@kms_fbcon_fbt@fbc-suspend.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3955]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3469]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#2065] / [i915#4854]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9337]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#9337]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#9337]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9934]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#3637]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9934]) +5 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8381]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637]) +5 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_flip@2x-flip-vs-modeset.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3637]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_flip@2x-flip-vs-modeset.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9934]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-tglu: [PASS][235] -> [FAIL][236] ([i915#2122]) +5 other tests fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/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-rkl: NOTRUN -> [SKIP][240] ([i915#2672]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672] / [i915#3555]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#8813]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/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][244] ([i915#2672]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/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-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8810] / [i915#8813]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8810]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][252] +42 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8708]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +24 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][255] +50 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-snb: [PASS][256] -> [SKIP][257] +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][258] +33 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#5439]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][260] ([i915#5439]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#5439]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#10433] / [i915#3458]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#3458]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8708]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#1825]) +18 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#9766]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +27 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][268] +95 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8708]) +29 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3458]) +22 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#3023]) +7 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-handle-closed: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#2575]) +163 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-4/igt@kms_getfb@getfb-handle-closed.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_getfb@getfb-handle-closed.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#6118]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12388]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#10656]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#12388]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#1839]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][286] ([i915#12177]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#10647]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#6953]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#12247]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#12247]) +9 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#2575] / [i915#9423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg1: NOTRUN -> [DMESG-WARN][292] ([i915#4423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][293] +200 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#12247]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [PASS][296] -> [SKIP][297] ([i915#2575] / [i915#9423]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#6953]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#12247]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#6953]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-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-c: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12247]) +7 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#9812]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#5354]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#3828]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][305] ([i915#3828]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#8430]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: [PASS][307] -> [SKIP][308] ([i915#12937]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9519]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9519]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9519]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][313] -> [SKIP][314] ([i915#9519]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#6524] / [i915#6805]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#6524]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#6524]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][318] ([i915#6524]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#6524]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#11520]) +4 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9808]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#11520]) +10 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12316]) +8 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#11520]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#11520]) +7 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][328] ([i915#11520]) +7 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9683]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +9 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr-dpms: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9688]) +21 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-4/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@fbc-psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +13 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@kms_psr@fbc-psr-primary-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +29 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9732]) +8 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +21 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-2/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#5289]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#12755]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][341] ([i915#12231]) +1 other test abort [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-5/igt@kms_selftest@drm_framebuffer.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][342] ([IGT#160] / [i915#6493]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#8623]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#9906]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-18/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][348] ([i915#9906]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][349] ([i915#9906]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#8808] / [i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#2437] / [i915#9412]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-14/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][352] ([i915#2437] / [i915#9412]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-glk1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#2437] / [i915#9412]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu-1: [PASS][355] -> [FAIL][356] ([i915#10538]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html - shard-mtlp: [PASS][357] -> [FAIL][358] ([i915#10538]) +2 other tests fail [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-mtlp-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@invalid-remove-userspace-config: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#12506]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@perf@invalid-remove-userspace-config.html * igt@perf@low-oa-exponent-permissions: - shard-dg2: [PASS][360] -> [SKIP][361] ([i915#12506]) +9 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-6/igt@perf@low-oa-exponent-permissions.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@perf@low-oa-exponent-permissions.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][362] ([i915#9100]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][363] ([i915#4349]) +2 other tests fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][364] ([i915#4349]) +4 other tests fail [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [ABORT][365] ([i915#13010]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-1/igt@perf_pmu@module-unload.html - shard-dg2: NOTRUN -> [FAIL][366] ([i915#11823]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][367] -> [FAIL][368] ([i915#11943] / [i915#12515]) +1 other test fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-2/igt@perf_pmu@most-busy-idle-check-all.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][369] -> [FAIL][370] ([i915#11943]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [PASS][371] -> [FAIL][372] ([i915#11943] / [i915#12515]) +1 other test fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#8516]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][374] ([i915#9351]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#3708]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#3708]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#3708]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-3/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#9917]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@tools_test@tools_test: - shard-dg2: [PASS][379] -> [FAIL][380] ([i915#12875]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-10/igt@tools_test@tools_test.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@tools_test@tools_test.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-tglu: [ABORT][381] ([i915#12817] / [i915#5507]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html * igt@fbdev@nullptr: - shard-dg2: [SKIP][383] ([i915#2582]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@fbdev@nullptr.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@fbdev@nullptr.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [FAIL][385] ([i915#9561]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-7/igt@gem_ctx_freq@sysfs.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-7/igt@gem_ctx_freq@sysfs.html * igt@gem_eio@kms: - shard-dg2: [FAIL][387] ([i915#5784]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-2/igt@gem_eio@kms.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_lmem_swapping@heavy-random: - shard-dg2: [SKIP][389] ([i915#12936]) -> [PASS][390] +1 other test pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@gem_lmem_swapping@heavy-random.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][391] ([i915#5493]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][393] -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-4/igt@gem_tiled_swapping@non-threaded.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rpm@gem-idle: - shard-rkl: [SKIP][395] -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-3/igt@i915_pm_rpm@gem-idle.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-1/igt@i915_pm_rpm@gem-idle.html * igt@i915_selftest@perf: - shard-dg2: [FAIL][397] ([i915#12867]) -> [PASS][398] +4 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@i915_selftest@perf.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@i915_selftest@perf.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: [DMESG-WARN][399] ([i915#12917] / [i915#12964]) -> [PASS][400] +2 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-2/igt@i915_suspend@basic-s2idle-without-i915.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg1: [FAIL][401] ([i915#12518] / [i915#12766]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][403] ([i915#3555]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-8/igt@kms_color@deep-color.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@kms_color@deep-color.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][405] ([i915#2122]) -> [PASS][406] +5 other tests pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][407] ([i915#6880]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [SKIP][409] -> [PASS][410] +21 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [SKIP][411] ([i915#3555] / [i915#8228]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-dg1: [DMESG-WARN][413] ([i915#4423]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg1-12/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg1-17/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: [SKIP][415] ([i915#2575] / [i915#9423]) -> [PASS][416] +3 other tests pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][417] ([i915#9295]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2: [SKIP][419] ([i915#12937]) -> [PASS][420] +5 other tests pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@basic-rte: - shard-rkl: [DMESG-FAIL][421] ([i915#12964]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-3/igt@kms_pm_rpm@basic-rte.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-2/igt@kms_pm_rpm@basic-rte.html * igt@kms_sequence@queue-busy@pipe-b-hdmi-a-2: - shard-rkl: [DMESG-WARN][423] ([i915#12964]) -> [PASS][424] +51 other tests pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-rkl-3/igt@kms_sequence@queue-busy@pipe-b-hdmi-a-2.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-rkl-5/igt@kms_sequence@queue-busy@pipe-b-hdmi-a-2.html * igt@kms_vblank@ts-continuation-idle-hang: - shard-dg2: [SKIP][425] ([i915#2575]) -> [PASS][426] +163 other tests pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@kms_vblank@ts-continuation-idle-hang.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-3/igt@kms_vblank@ts-continuation-idle-hang.html * igt@perf_pmu@all-busy-check-all: - shard-dg2: [SKIP][427] ([i915#12506]) -> [PASS][428] +12 other tests pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@perf_pmu@all-busy-check-all.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@perf_pmu@all-busy-check-all.html * igt@perf_pmu@busy-idle@ccs0: - shard-mtlp: [FAIL][429] ([i915#4349]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-mtlp-7/igt@perf_pmu@busy-idle@ccs0.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-mtlp-2/igt@perf_pmu@busy-idle@ccs0.html - shard-dg2: [FAIL][431] ([i915#4349]) -> [PASS][432] +1 other test pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-1/igt@perf_pmu@busy-idle@ccs0.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-8/igt@perf_pmu@busy-idle@ccs0.html * igt@perf_pmu@module-unload: - shard-snb: [ABORT][433] ([i915#12450]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-snb4/igt@perf_pmu@module-unload.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-snb4/igt@perf_pmu@module-unload.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-dg2: [SKIP][435] -> [SKIP][436] ([i915#11078]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@device_reset@cold-reset-bound.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@isolation: - shard-dg2: [SKIP][437] ([i915#8414]) -> [SKIP][438] ([i915#12506]) +2 other tests skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-7/igt@drm_fdinfo@isolation.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@drm_fdinfo@isolation.html * igt@gem_busy@semaphore: - shard-dg2: [SKIP][439] ([i915#2575]) -> [SKIP][440] ([i915#3936]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@gem_busy@semaphore.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-10/igt@gem_busy@semaphore.html * igt@gem_ctx_persistence@hang: - shard-dg2: [SKIP][441] ([i915#8555]) -> [SKIP][442] ([i915#2575]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-8/igt@gem_ctx_persistence@hang.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: [SKIP][443] ([i915#2575]) -> [SKIP][444] ([i915#280]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: [SKIP][445] ([i915#2575]) -> [ABORT][446] ([i915#10030] / [i915#7975] / [i915#8213]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@gem_eio@hibernate.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-4/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: [SKIP][447] ([i915#4812]) -> [SKIP][448] ([i915#2575]) +1 other test skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-4/igt@gem_exec_balancer@bonded-false-hang.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_fence@submit3: - shard-dg2: [SKIP][449] ([i915#2575]) -> [SKIP][450] ([i915#4812]) +2 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15744/shard-dg2-11/igt@gem_exec_fence@submit3.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/shard-dg2-2/igt@gem_exec_fence@submit3.html == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12195/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format 2024-11-25 17:10 [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format Jeevan B ` (3 preceding siblings ...) 2024-11-26 2:19 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-11-26 4:02 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-26 4:02 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 134882 bytes --] == Series Details == Series: tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format URL : https://patchwork.freedesktop.org/series/141765/ State : failure == Summary == CI Bug Log - changes from XEIGT_8125_full -> XEIGTPW_12195_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12195_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12195_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 (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12195_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unplug-rescan: - shard-bmg: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [PASS][2] -> [SKIP][3] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dp_aux_dev.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_dp_aux_dev.html * igt@kms_psr@fbc-psr2-suspend: - shard-lnl: [PASS][4] -> [FAIL][5] +2 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_psr@fbc-psr2-suspend.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-4/igt@kms_psr@fbc-psr2-suspend.html * igt@xe_eudebug_online@pagefault-write: - shard-bmg: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@xe_eudebug_online@pagefault-write.html * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr.html New tests --------- New tests have been introduced between XEIGT_8125_full and XEIGTPW_12195_full: ### New IGT tests (1) ### * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.08] s Known issues ------------ Here are the changes found in XEIGTPW_12195_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#2423]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@core_getclient.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@core_getclient.html * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#3468] / [Intel XE#3521]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@core_hotunplug@hotreplug.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@core_hotunplug@hotreplug.html * igt@fbdev@info: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2134]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@fbdev@info.html * igt@fbdev@unaligned-write: - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@fbdev@unaligned-write.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@fbdev@unaligned-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2370]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2327]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2136] / [Intel XE#2351]) +15 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#607]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2328]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#610]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +84 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#3468]) +1 other test incomplete [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +10 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1727]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3113]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2724]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#314]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314] / [Intel XE#455]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-6.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#307]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2320]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2321]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x64: - shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#2423] / [i915#2575]) +58 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_edge_walk@64x64-top-edge: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#2577] / [Intel XE#3106]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_cursor_edge_walk@64x64-top-edge.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-8/igt@kms_cursor_edge_walk@64x64-top-edge.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][50] ([Intel XE#3468]) +29 other tests dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2291]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#2423] / [i915#2575]) +37 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-3-pipe-c-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][55] ([Intel XE#877]) +1 other test dmesg-warn [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-3-pipe-c-dp-2.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3070]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-untiled: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][58] ([Intel XE#1727]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-untiled.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2244]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#776]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#310]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#310]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#2882]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#3486]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2597]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-bmg: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#2597] / [Intel XE#2635]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2293]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#455]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#656]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2136]) +38 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2311]) +26 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#651]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#2333]) +8 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][81] -> [SKIP][82] ([Intel XE#656]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#653]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2312]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) +19 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2136]) +15 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_joiner@basic-force-big-joiner.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#346]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#1035] / [Intel XE#3468]) +1 other test incomplete [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [PASS][93] -> [DMESG-FAIL][94] ([Intel XE#3468]) +5 other tests dmesg-fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +9 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a: - shard-bmg: [PASS][97] -> [DMESG-WARN][98] ([Intel XE#2705] / [Intel XE#3468]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-bmg: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#2566] / [Intel XE#3468]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#870]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#3309]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1439]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@legacy-planes@plane-50: - shard-bmg: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#1727] / [Intel XE#3468]) +14 other tests dmesg-warn [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_pm_rpm@legacy-planes@plane-50.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_pm_rpm@legacy-planes@plane-50.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1439] / [Intel XE#3141]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#2446]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2446]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes@plane-32: - shard-bmg: NOTRUN -> [DMESG-WARN][111] ([Intel XE#1727] / [Intel XE#3468]) +8 other tests dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_pm_rpm@universal-planes@plane-32.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2387]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2234]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2330]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2-set2: [PASS][119] -> [SKIP][120] ([Intel XE#455]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#899]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vblank@wait-forked@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][123] ([Intel XE#3468]) +5 other tests dmesg-fail [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_vblank@wait-forked@pipe-a-dp-2.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2168]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@kms_vrr@cmrr.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1499]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1091] / [Intel XE#2849]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][127] ([Intel XE#3468]) +6 other tests dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [ABORT][128] ([Intel XE#2625] / [Intel XE#3468]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1123]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#3468]) +61 other tests dmesg-warn [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_eudebug_online@interrupt-other: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@xe_eudebug_online@interrupt-other.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +9 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_eudebug_online@stopped-thread.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][134] ([Intel XE#1473]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][135] -> [TIMEOUT][136] ([Intel XE#1473]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1130]) +71 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2322]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#288]) +6 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [PASS][140] -> [DMESG-WARN][141] ([Intel XE#3467]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#3343]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [PASS][144] -> [DMESG-WARN][145] ([Intel XE#3343] / [Intel XE#3468]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][146] ([Intel XE#3467]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][147] -> [DMESG-WARN][148] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: NOTRUN -> [FAIL][149] ([Intel XE#3499]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [PASS][150] -> [TIMEOUT][151] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_module_load@load: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2457]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_module_load@load.html - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#378]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_module_load@load.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#3573]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_oa@non-zero-reason: - shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#1727]) +6 other tests dmesg-warn [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_oa@non-zero-reason.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_oa@non-zero-reason.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][157] ([Intel XE#1173]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2284]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-basic-exec: - shard-bmg: [PASS][159] -> [INCOMPLETE][160] ([Intel XE#1727] / [Intel XE#3360] / [Intel XE#3468]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_pm@d3hot-basic-exec.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pm@s2idle-multiple-execs: - shard-bmg: NOTRUN -> [DMESG-WARN][161] ([Intel XE#1616] / [Intel XE#3468]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s3-vm-bind-userptr: - shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_pm@s3-vm-bind-userptr.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-vm-bind-userptr: - shard-bmg: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@xe_pm@s4-vm-bind-userptr.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#579]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@gt-c6-freeze@gt0: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][167] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@xe_pm_residency@gt-c6-freeze@gt0.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#944]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#3342]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#3342]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_tlb@basic-tlb: - shard-bmg: [PASS][171] -> [CRASH][172] ([Intel XE#3212]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@xe_tlb@basic-tlb.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@xe_tlb@basic-tlb.html - shard-lnl: [PASS][173] -> [CRASH][174] ([Intel XE#3212]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@xe_tlb@basic-tlb.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-8/igt@xe_tlb@basic-tlb.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][175] -> [SKIP][176] ([Intel XE#1130]) +119 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt@core_getversion@basic: - shard-dg2-set2: [FAIL][177] ([Intel XE#3440]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_getversion@basic.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@core_getversion@basic.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][179] ([Intel XE#3249]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@nullptr: - shard-dg2-set2: [SKIP][181] ([Intel XE#2134]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@fbdev@nullptr.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@fbdev@nullptr.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][183] ([Intel XE#911]) -> [PASS][184] +3 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][185] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [SKIP][187] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][188] +9 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_crc@cursor-onscreen-128x128: - shard-bmg: [DMESG-FAIL][189] ([Intel XE#3468]) -> [PASS][190] +22 other tests pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-128x128.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [INCOMPLETE][191] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][192] +5 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [SKIP][193] ([Intel XE#2291]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2-set2: [SKIP][195] ([Intel XE#309]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2-set2: [SKIP][197] ([Intel XE#310]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-blocking-wf_vblank.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][199] ([Intel XE#2316]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@absolute-wf_vblank: - shard-bmg: [DMESG-FAIL][201] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@absolute-wf_vblank.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-bmg: [DMESG-WARN][203] -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][205] ([Intel XE#886]) -> [PASS][206] +5 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-bmg: [DMESG-WARN][207] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][208] +6 other tests pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][209] -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][211] ([Intel XE#2136]) -> [PASS][212] +16 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_getfb@getfb-handle-zero: - shard-dg2-set2: [SKIP][213] ([Intel XE#2423] / [i915#2575]) -> [PASS][214] +72 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_getfb@getfb-handle-zero.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_getfb@getfb-handle-zero.html * igt@kms_hdr@bpc-switch-suspend: - shard-bmg: [DMESG-FAIL][215] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_hdr@bpc-switch-suspend.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane@pixel-format: - shard-dg2-set2: [INCOMPLETE][217] ([Intel XE#1035] / [Intel XE#1727]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_plane@pixel-format.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_plane@pixel-format.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [INCOMPLETE][219] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][221] ([Intel XE#718]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [SKIP][223] ([Intel XE#2446]) -> [PASS][224] +2 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][225] ([Intel XE#1435]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][227] ([Intel XE#899]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][229] ([Intel XE#2159]) -> [PASS][230] +1 other test pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01: - shard-bmg: [INCOMPLETE][231] -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html * igt@xe_evict@evict-beng-large-external: - shard-dg2-set2: [DMESG-WARN][233] -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_evict@evict-beng-large-external.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_evict@evict-beng-large-external.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][235] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@many-execqueues-bindexecqueue: - shard-lnl: [FAIL][237] -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_exec_basic@many-execqueues-bindexecqueue.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-6/igt@xe_exec_basic@many-execqueues-bindexecqueue.html * igt@xe_exec_compute_mode@many-execqueues-userptr-rebind: - shard-dg2-set2: [SKIP][239] ([Intel XE#1130]) -> [PASS][240] +127 other tests pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_compute_mode@many-execqueues-userptr-rebind.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_exec_compute_mode@many-execqueues-userptr-rebind.html * igt@xe_exec_fault_mode@twice-bindexecqueue: - shard-bmg: [DMESG-WARN][241] ([Intel XE#1727]) -> [PASS][242] +4 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@xe_exec_fault_mode@twice-bindexecqueue.html * igt@xe_exec_threads@threads-mixed-basic: - shard-lnl: [DMESG-WARN][243] -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@xe_exec_threads@threads-mixed-basic.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-5/igt@xe_exec_threads@threads-mixed-basic.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][245] ([Intel XE#3467]) -> [PASS][246] +2 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-bmg: [DMESG-WARN][247] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][249] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [SKIP][251] ([Intel XE#2229]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-bmg: [INCOMPLETE][253] ([Intel XE#2998]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: [SKIP][255] ([Intel XE#1192]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html * igt@xe_oa@oa-regs-whitelisted@ccs-0: - shard-lnl: [FAIL][257] ([Intel XE#2514]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted@ccs-0.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted@ccs-0.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][259] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][261] ([Intel XE#958]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@query-cs-cycles: - shard-dg2-set2: [DMESG-WARN][263] ([Intel XE#1727]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_query@query-cs-cycles.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@xe_query@query-cs-cycles.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [DMESG-WARN][265] ([Intel XE#3468]) -> [PASS][266] +134 other tests pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [INCOMPLETE][267] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][268] ([Intel XE#1885]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][269] ([Intel XE#316]) -> [SKIP][270] ([Intel XE#2136]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2-set2: [SKIP][271] ([Intel XE#2136]) -> [SKIP][272] ([Intel XE#316]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@linear-8bpp-rotate-90.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [DMESG-FAIL][273] ([Intel XE#3468]) -> [DMESG-WARN][274] ([Intel XE#3468]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][275] ([Intel XE#1124]) -> [SKIP][276] ([Intel XE#2136] / [Intel XE#2351]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][278] ([Intel XE#619]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][279] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][280] ([Intel XE#607]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][281] ([Intel XE#610]) -> [SKIP][282] ([Intel XE#2136]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][283] ([Intel XE#2136]) -> [SKIP][284] ([Intel XE#1124]) +4 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][285] ([Intel XE#619]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][287] ([Intel XE#1124]) -> [SKIP][288] ([Intel XE#2136]) +6 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][290] ([Intel XE#1124]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][291] ([Intel XE#367]) -> [SKIP][292] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][293] ([Intel XE#2423] / [i915#2575]) -> [SKIP][294] ([Intel XE#2191]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][295] ([Intel XE#2191]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][297] ([Intel XE#2423] / [i915#2575]) -> [SKIP][298] ([Intel XE#367]) +6 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][299] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][300] ([Intel XE#2136]) +6 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][301] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][302] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][303] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][304] ([Intel XE#787]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][305] ([Intel XE#787]) -> [SKIP][306] ([Intel XE#455] / [Intel XE#787]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][307] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][308] ([Intel XE#2136]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][309] ([Intel XE#2136]) -> [SKIP][310] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#2907]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][313] ([Intel XE#2907]) -> [SKIP][314] ([Intel XE#2136]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#314] / [Intel XE#455]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cdclk@mode-transition.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][317] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][318] ([Intel XE#314]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#306]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_chamelium_color@ctm-negative.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: [SKIP][321] ([Intel XE#373]) -> [SKIP][322] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-read.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: [SKIP][323] ([Intel XE#2423] / [i915#2575]) -> [SKIP][324] ([Intel XE#373]) +11 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#307]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][327] ([Intel XE#1178]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@lic-type-0.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][329] ([Intel XE#2715]) -> [FAIL][330] ([Intel XE#1178]) +1 other test fail [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#308]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-suspend: - shard-dg2-set2: [INCOMPLETE][333] ([Intel XE#3468]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][335] ([Intel XE#2291]) -> [INCOMPLETE][336] ([Intel XE#1727]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-set2: [SKIP][337] ([Intel XE#2423] / [i915#2575]) -> [SKIP][338] ([Intel XE#309]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2-set2: [SKIP][339] ([Intel XE#309]) -> [SKIP][340] ([Intel XE#2423] / [i915#2575]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][341] ([Intel XE#2291]) -> [DMESG-WARN][342] ([Intel XE#3468] / [Intel XE#877]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][343] ([Intel XE#877]) -> [SKIP][344] ([Intel XE#2291]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [SKIP][346] ([Intel XE#323]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][347] ([Intel XE#323]) -> [SKIP][348] ([Intel XE#2423] / [i915#2575]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2: - shard-bmg: [DMESG-FAIL][349] ([Intel XE#3468]) -> [FAIL][350] ([Intel XE#2141]) +2 other tests fail [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][351] ([Intel XE#307]) -> [SKIP][352] ([Intel XE#2423] / [i915#2575]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [DMESG-WARN][354] ([Intel XE#1727]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_draw_crc@draw-method-mmap-wc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][355] ([Intel XE#455]) -> [SKIP][356] ([Intel XE#2136]) +5 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][357] ([Intel XE#2316]) -> [DMESG-WARN][358] ([Intel XE#3468]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][359] ([Intel XE#310]) -> [SKIP][360] ([Intel XE#2423] / [i915#2575]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-FAIL][361] ([Intel XE#3468]) -> [FAIL][362] ([Intel XE#2882]) +1 other test fail [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [SKIP][364] ([Intel XE#310]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][365] ([Intel XE#3468]) -> [FAIL][366] ([Intel XE#3486]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][367] ([Intel XE#3468]) -> [FAIL][368] ([Intel XE#2882]) +1 other test fail [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][369] ([Intel XE#3468]) -> [FAIL][370] ([Intel XE#3321] / [Intel XE#3487]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-bmg: [INCOMPLETE][371] -> [SKIP][372] ([Intel XE#2293] / [Intel XE#2380]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-bmg: [INCOMPLETE][373] -> [SKIP][374] ([Intel XE#2293]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: [SKIP][375] ([Intel XE#455]) -> [SKIP][376] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#455]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [SKIP][380] ([i915#5274]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#651]) +18 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][383] ([Intel XE#651]) -> [SKIP][384] ([Intel XE#2136]) +15 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][385] ([Intel XE#2311]) -> [SKIP][386] ([Intel XE#2312]) +14 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][387] ([Intel XE#2312]) -> [SKIP][388] ([Intel XE#2311]) +9 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][389] ([Intel XE#3468]) -> [FAIL][390] ([Intel XE#2333]) +9 other tests fail [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [INCOMPLETE][391] -> [FAIL][392] ([Intel XE#2333]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][393] ([Intel XE#656]) -> [SKIP][394] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [DMESG-FAIL][395] ([Intel XE#3468]) -> [SKIP][396] ([Intel XE#2312]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][397] ([Intel XE#2312]) -> [FAIL][398] ([Intel XE#2333]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [FAIL][399] ([Intel XE#2333]) -> [SKIP][400] ([Intel XE#2312]) +5 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][401] ([Intel XE#2333]) -> [DMESG-FAIL][402] ([Intel XE#3468]) +4 other tests dmesg-fail [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][404] ([Intel XE#656]) +2 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][405] ([Intel XE#651]) -> [SKIP][406] ([Intel XE#656]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][407] ([Intel XE#656]) -> [SKIP][408] ([Intel XE#651]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][409] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][410] ([Intel XE#651]) +5 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][411] ([Intel XE#651]) -> [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#656]) +2 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][415] ([Intel XE#653]) -> [SKIP][416] ([Intel XE#2136]) +14 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#653]) +11 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][419] ([Intel XE#656]) -> [SKIP][420] ([Intel XE#2136]) +5 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][421] ([Intel XE#2313]) -> [SKIP][422] ([Intel XE#2312]) +11 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][423] ([Intel XE#2136]) -> [SKIP][424] ([Intel XE#1158]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][425] ([Intel XE#653]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][427] ([Intel XE#656]) -> [SKIP][428] ([Intel XE#653]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][429] ([Intel XE#653]) -> [SKIP][430] ([Intel XE#656]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][431] ([Intel XE#2312]) -> [SKIP][432] ([Intel XE#2313]) +10 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][433] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][434] ([Intel XE#653]) +5 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][435] ([Intel XE#2423] / [i915#2575]) -> [SKIP][436] ([Intel XE#605]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [DMESG-WARN][437] ([Intel XE#3468]) -> [SKIP][438] ([Intel XE#2423] / [i915#2575]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][439] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][440] ([Intel XE#3544]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][441] ([Intel XE#2927]) -> [SKIP][442] ([Intel XE#2136]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_joiner@basic-ultra-joiner.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][443] ([Intel XE#356]) -> [SKIP][444] ([Intel XE#2423] / [i915#2575]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2-set2: [SKIP][445] ([Intel XE#2423] / [i915#2575]) -> [SKIP][446] ([Intel XE#455]) +5 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_panel_fitting@atomic-fastset.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][447] ([Intel XE#616]) -> [SKIP][448] ([Intel XE#2423] / [i915#2575]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_cursor@primary.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][449] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][450] ([Intel XE#2423] / [i915#2575]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-bmg: [INCOMPLETE][451] -> [DMESG-WARN][452] ([Intel XE#3468]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a: - shard-bmg: [INCOMPLETE][453] -> [DMESG-WARN][454] ([Intel XE#2705] / [Intel XE#3468]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][455] ([Intel XE#2423] / [i915#2575]) -> [SKIP][456] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][457] ([Intel XE#2938]) -> [SKIP][458] ([Intel XE#2136]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#870]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_backlight@fade.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][461] ([Intel XE#1122]) -> [SKIP][462] ([Intel XE#2136] / [Intel XE#2351]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][463] ([Intel XE#1430]) -> [DMESG-FAIL][464] ([Intel XE#1727] / [Intel XE#3468]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][465] ([Intel XE#908]) -> [SKIP][466] ([Intel XE#2136]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [DMESG-WARN][467] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][468] ([Intel XE#3468]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][469] ([Intel XE#1489]) -> [SKIP][470] ([Intel XE#2136]) +8 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][471] ([Intel XE#2136]) -> [SKIP][472] ([Intel XE#1489]) +10 other tests skip [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][473] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][474] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr@fbc-pr-no-drrs.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][475] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][476] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][477] ([Intel XE#2136]) -> [SKIP][478] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][479] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][480] ([Intel XE#2136]) +9 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@pr-cursor-plane-onoff.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][482] ([Intel XE#2351]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][483] ([Intel XE#2423] / [i915#2575]) -> [SKIP][484] ([Intel XE#3414]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][485] ([Intel XE#3414]) -> [SKIP][486] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][487] ([Intel XE#1127]) -> [SKIP][488] ([Intel XE#2423] / [i915#2575]) +1 other test skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][489] ([Intel XE#455]) -> [SKIP][490] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_vrr@flip-dpms.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][491] ([Intel XE#2423] / [i915#2575]) -> [SKIP][492] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_ccs@suspend-resume: - shard-dg2-set2: [SKIP][493] ([Intel XE#1130]) -> [ABORT][494] ([Intel XE#2625] / [Intel XE#3468]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_ccs@suspend-resume.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_ccs@suspend-resume.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][495] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][496] ([Intel XE#1130]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][497] ([Intel XE#2905]) -> [SKIP][498] ([Intel XE#1130]) +13 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_eudebug@basic-close.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][499] ([Intel XE#1130]) -> [SKIP][500] ([Intel XE#2905]) +9 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_evict@evict-beng-small-multi-vm: - shard-dg2-set2: [SKIP][501] ([Intel XE#1130]) -> [DMESG-WARN][502] ([Intel XE#1727]) +1 other test dmesg-warn [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_evict@evict-beng-small-multi-vm.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_evict@evict-beng-small-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][503] ([Intel XE#1473]) -> [SKIP][504] ([Intel XE#1130]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_compute_mode@once-userptr-invalidate: - shard-bmg: [DMESG-WARN][505] ([Intel XE#3468]) -> [DMESG-WARN][506] ([Intel XE#1727]) +1 other test dmesg-warn [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_exec_compute_mode@once-userptr-invalidate.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_exec_compute_mode@once-userptr-invalidate.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#288]) +20 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][509] ([Intel XE#288]) -> [SKIP][510] ([Intel XE#1130]) +23 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race: - shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [DMESG-WARN][512] ([Intel XE#3371]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-435/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [DMESG-WARN][513] ([Intel XE#3343]) -> [DMESG-WARN][514] ([Intel XE#3343] / [Intel XE#3468]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [DMESG-WARN][516] ([Intel XE#3467]) +1 other test dmesg-warn [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [DMESG-WARN][517] ([Intel XE#3467]) -> [SKIP][518] ([Intel XE#1130]) +1 other test skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: [FAIL][519] ([Intel XE#3499]) -> [DMESG-FAIL][520] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-fail [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][521] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][522] ([Intel XE#3499]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-bmg: [DMESG-WARN][523] ([Intel XE#3467]) -> [DMESG-WARN][524] ([Intel XE#3467] / [Intel XE#3468]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][525] ([Intel XE#2833]) -> [SKIP][526] ([Intel XE#1192]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][527] ([Intel XE#1130]) -> [SKIP][528] ([Intel XE#560]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_media_fill@media-fill.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_media_fill@media-fill.html * igt@xe_module_load@reload: - shard-bmg: [DMESG-WARN][529] ([Intel XE#3467]) -> [DMESG-FAIL][530] ([Intel XE#3468]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_module_load@reload.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_module_load@reload.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#3573]) +7 other tests skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][533] ([Intel XE#3573]) -> [SKIP][534] ([Intel XE#1130]) +2 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][535] ([Intel XE#1061]) -> [FAIL][536] ([Intel XE#1173]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_peer2peer@read.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-mmap-vram: - shard-dg2-set2: [DMESG-WARN][539] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][540] ([Intel XE#1130]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pm@d3hot-mmap-vram.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [DMESG-WARN][542] ([Intel XE#1727] / [Intel XE#3468]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-basic-exec: - shard-bmg: [DMESG-FAIL][543] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][544] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_pm@s3-basic-exec.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-7/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][545] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][546] ([Intel XE#1130]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [DMESG-WARN][547] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][548] ([Intel XE#1130]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][549] ([Intel XE#1130]) -> [DMESG-WARN][550] ([Intel XE#2280] / [Intel XE#3468]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_pm@s4-vm-bind-unbind-all.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@cpg-basic: - shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [ABORT][552] ([Intel XE#3363] / [Intel XE#3468]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm_residency@cpg-basic.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-432/igt@xe_pm_residency@cpg-basic.html * igt@xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [DMESG-WARN][554] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_pm_residency@gt-c6-freeze.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-436/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: [SKIP][555] ([Intel XE#1130]) -> [SKIP][556] ([Intel XE#944]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-463/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-gt-list: - shard-dg2-set2: [SKIP][557] ([Intel XE#944]) -> [SKIP][558] ([Intel XE#1130]) +2 other tests skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_query@multigpu-query-gt-list.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][559] ([Intel XE#3342]) -> [SKIP][560] ([Intel XE#1130]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [FAIL][561] ([Intel XE#2922]) -> [SKIP][562] ([Intel XE#1130]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_tlb@basic-tlb.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_tlb@basic-tlb.html * igt@xe_vm@mixed-misaligned-binds-1611661312: - shard-dg2-set2: [DMESG-WARN][563] ([Intel XE#1727]) -> [SKIP][564] ([Intel XE#1130]) +3 other tests skip [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_vm@mixed-misaligned-binds-1611661312.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_vm@mixed-misaligned-binds-1611661312.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][565] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][566] ([Intel XE#1130]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html - shard-bmg: [DMESG-WARN][567] -> [DMESG-WARN][568] ([Intel XE#3468]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3360 [Intel XE#3363]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3363 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8125 -> IGTPW_12195 * Linux: xe-2275-6510562075d8541c218e72188f9ef339f8ba371f -> xe-2276-ae312905c5a9fc7ce599a74422f068725101c475 IGTPW_12195: 12195 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f xe-2276-ae312905c5a9fc7ce599a74422f068725101c475: ae312905c5a9fc7ce599a74422f068725101c475 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12195/index.html [-- Attachment #2: Type: text/html, Size: 174325 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-11-29 8:11 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-25 17:10 [PATCH] tests/intel/kms_pm_rpm: Update cursor_fb3 framebuffer creation format Jeevan B 2024-11-25 18:22 ` Rodrigo Vivi 2024-11-26 12:01 ` Sharma, Swati2 2024-11-29 8:11 ` Juha-Pekka Heikkilä 2024-11-26 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork 2024-11-26 0:48 ` ✓ i915.CI.BAT: " Patchwork 2024-11-26 2:19 ` ✗ i915.CI.Full: failure " Patchwork 2024-11-26 4:02 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox