* [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw
@ 2025-01-16 6:17 Kunal Joshi
2025-01-16 7:28 ` ✗ Xe.CI.BAT: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Kunal Joshi @ 2025-01-16 6:17 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Instead of checking only currrent modes,
find combination of modes in mst topology
that can be accomodated in current link bw.
Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2633
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_display_modes.c | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index e41c60cc0..a582ba1a9 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -60,6 +60,22 @@ typedef struct {
int n_pipes;
} data_t;
+static bool fit_modes_in_bw(data_t *data)
+{
+ bool found;
+ int ret;
+
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ if (ret != 0) {
+ found = igt_override_all_active_output_modes_to_fit_bw(&data->display);
+ igt_require_f(found,
+ "No valid mode combo found for modeset\n");
+ }
+ return true;
+}
+
/* Get higher mode supported by panel. */
static drmModeModeInfo *get_highres_mode(igt_output_t *output)
{
@@ -279,7 +295,6 @@ static void run_extendedmode_negative(data_t *data, int pipe1, int pipe2)
struct igt_fb fbs[2];
igt_display_t *display = &data->display;
igt_plane_t *plane[2];
- int ret;
igt_display_reset(display);
@@ -306,8 +321,7 @@ static void run_extendedmode_negative(data_t *data, int pipe1, int pipe2)
igt_output_override_mode(data->mst_output[1], &data->mode_mst[1]);
igt_require(intel_pipe_output_combo_valid(display));
- ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
- igt_assert(ret != 0 && errno == ENOSPC);
+ igt_assert_f(fit_modes_in_bw(data), "Unable to fit modes in bw\n");
}
igt_main
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✗ Xe.CI.BAT: failure for tests/kms_display_modes: fit modes in mst bw 2025-01-16 6:17 [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw Kunal Joshi @ 2025-01-16 7:28 ` Patchwork 2025-01-16 7:30 ` ✗ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-01-16 7:28 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2285 bytes --] == Series Details == Series: tests/kms_display_modes: fit modes in mst bw URL : https://patchwork.freedesktop.org/series/143585/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_BAT -> XEIGTPW_12445_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12445_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12445_BAT, 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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12445_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_basic@twice-userptr-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt@xe_exec_basic@twice-userptr-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/bat-adlp-vf/igt@xe_exec_basic@twice-userptr-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12445_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8193 -> IGTPW_12445 IGTPW_12445: 12445 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/index.html [-- Attachment #2: Type: text/html, Size: 2888 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.BAT: failure for tests/kms_display_modes: fit modes in mst bw 2025-01-16 6:17 [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw Kunal Joshi 2025-01-16 7:28 ` ✗ Xe.CI.BAT: failure for " Patchwork @ 2025-01-16 7:30 ` Patchwork 2025-01-16 11:10 ` ✗ Xe.CI.Full: " Patchwork 2025-02-10 12:23 ` [PATCH i-g-t] " Sharma, Swati2 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-01-16 7:30 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3799 bytes --] == Series Details == Series: tests/kms_display_modes: fit modes in mst bw URL : https://patchwork.freedesktop.org/series/143585/ State : failure == Summary == CI Bug Log - changes from IGT_8193 -> IGTPW_12445 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12445 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12445, 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_12445/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12445: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-adls-6: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-adls-6/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-adls-6/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12445 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-twl-1: NOTRUN -> [ABORT][3] ([i915#12919] / [i915#13503]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_pm: - bat-twl-1: NOTRUN -> [ABORT][4] ([i915#12919]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-twl-1/igt@i915_selftest@live@gt_pm.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-mtlp-8: [INCOMPLETE][5] ([i915#13495]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][7] ([i915#13393]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-arlh-3/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8193/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/bat-mtlp-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#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13495 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8193 -> IGTPW_12445 CI-20190529: 20190529 CI_DRM_15964: 4cea1f90028925afcf1a0f8a0ef301f90349688c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12445: 12445 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12445/index.html [-- Attachment #2: Type: text/html, Size: 4687 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_display_modes: fit modes in mst bw 2025-01-16 6:17 [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw Kunal Joshi 2025-01-16 7:28 ` ✗ Xe.CI.BAT: failure for " Patchwork 2025-01-16 7:30 ` ✗ i915.CI.BAT: " Patchwork @ 2025-01-16 11:10 ` Patchwork 2025-02-10 12:23 ` [PATCH i-g-t] " Sharma, Swati2 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-01-16 11:10 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 102146 bytes --] == Series Details == Series: tests/kms_display_modes: fit modes in mst bw URL : https://patchwork.freedesktop.org/series/143585/ State : failure == Summary == CI Bug Log - changes from XEIGT_8193_full -> XEIGTPW_12445_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12445_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12445_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_12445_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-7/igt@kms_flip@flip-vs-suspend-interruptible.html #### Warnings #### * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][6] ([Intel XE#3862]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][8] ([Intel XE#2882] / [Intel XE#3820]) -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html Known issues ------------ Here are the changes found in XEIGTPW_12445_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][10] ([Intel XE#3440]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@core_getversion@basic.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@core_hotunplug@unplug-rescan.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-root: - shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#3249]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@core_setmaster@master-drop-set-root.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@unaligned-read: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@fbdev@unaligned-read.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@fbdev@unaligned-read.html - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@fbdev@unaligned-read.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@fbdev@unaligned-read.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2550] / [Intel XE#3767]) +23 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#873]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2136]) +42 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-180.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2136]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1467]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#619]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2907]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +195 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#455] / [Intel XE#787]) +46 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#2705]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#373]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1178]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1188]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2291]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-dg2-set2: [PASS][55] -> [SKIP][56] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1508]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2372]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt@kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#701]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1138]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1135]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2316]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#3321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#2597]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible@bd-hdmi-a6-dp4.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2423]) +197 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank@b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#301]) +2 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397] / [Intel XE#1745]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([i915#5274]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2311]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#651]) +38 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2333]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#656]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2136]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +27 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#605]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [PASS][92] -> [ABORT][93] ([Intel XE#2625]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][94] ([Intel XE#4048]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html * igt@kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1503]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#346]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#3012]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][99] ([Intel XE#616]) +3 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html * igt@kms_plane_multiple@tiling-x: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2423]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_plane_multiple@tiling-x.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#870]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2136]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#718]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1129]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#2446]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_pm_rpm@cursor.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2446]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2893]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1122]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@pr-primary-blt: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2234] / [Intel XE#2850]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#3414]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1127]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1500]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#455]) +16 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2168]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#756]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_writeback@writeback-check-output.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1126]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2905]) +13 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3889]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#3889]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@xe_eudebug_online@single-step.html * igt@xe_evict@evict-large-external: - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#1130]) +20 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@xe_evict@evict-large-external.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@xe_evict@evict-large-external.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#688]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_atomic@basic-dec-all: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1130]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_exec_atomic@basic-dec-all.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][133] -> [SKIP][134] ([Intel XE#1130]) +426 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_exec_basic@many-bindexecqueue-rebind.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1392]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt@xe_exec_basic@multigpu-once-null.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +28 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2229]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#4045]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-7/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_module_load@reload: - shard-dg2-set2: NOTRUN -> [FAIL][142] ([Intel XE#3546]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt@xe_module_load@reload.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][143] -> [FAIL][144] ([Intel XE#3546]) +2 other tests fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_module_load@reload-no-display.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-mocs: - shard-dg2-set2: [PASS][147] -> [ABORT][148] ([Intel XE#1358] / [Intel XE#1794]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@xe_pm@s2idle-mocs.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-432/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [PASS][149] -> [TIMEOUT][150] ([Intel XE#1358]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-prefetch.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][151] -> [ABORT][152] ([Intel XE#1358] / [Intel XE#1607]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@xe_pm@s4-basic.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-3/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm_residency@cpg-gt-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1130]) +14 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@xe_pm_residency@cpg-gt-toggle.html * igt@xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#944]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-1/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3342]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@fbdev@pan: - shard-bmg: [SKIP][158] ([Intel XE#2134]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@fbdev@pan.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@fbdev@pan.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1: - shard-lnl: [FAIL][160] ([Intel XE#4075]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-c-edp-1.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][162] ([Intel XE#2291]) -> [PASS][163] +2 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][164] ([Intel XE#2425]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][166] ([Intel XE#2882]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][168] ([Intel XE#3820]) -> [PASS][169] +2 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][170] ([Intel XE#301]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][172] ([Intel XE#2316]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@dpms-vs-vblank-race: - shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#2049]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a6.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][178] ([Intel XE#886]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][180] ([Intel XE#2882] / [Intel XE#3820]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-bmg: [SKIP][182] ([Intel XE#3007]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-max.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][184] ([Intel XE#2571]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [FAIL][186] -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][188] ([Intel XE#899]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][190] ([Intel XE#1392]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-434/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [ABORT][192] ([Intel XE#1358]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-433/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][194] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [ABORT][196] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-464/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_vm@bind-once: - shard-bmg: [SKIP][198] ([Intel XE#1130]) -> [PASS][199] +6 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@xe_vm@bind-once.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-4/igt@xe_vm@bind-once.html #### Warnings #### * igt@core_getversion@basic: - shard-bmg: [FAIL][200] -> [FAIL][201] ([Intel XE#3440]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@core_getversion@basic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@core_getversion@basic.html * igt@kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][202] ([Intel XE#3007]) -> [SKIP][203] ([Intel XE#2423]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-999.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][204] ([Intel XE#827]) -> [SKIP][205] ([Intel XE#2423]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][206] ([Intel XE#873]) -> [SKIP][207] ([Intel XE#2423]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][208] ([Intel XE#2370]) -> [SKIP][209] ([Intel XE#2423]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][210] ([Intel XE#2327]) -> [SKIP][211] ([Intel XE#2136]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][212] ([Intel XE#316]) -> [SKIP][213] ([Intel XE#2136]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][214] ([Intel XE#1124]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][216] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][217] ([Intel XE#1124]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][218] ([Intel XE#1124]) -> [SKIP][219] ([Intel XE#2136]) +27 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][220] ([Intel XE#610]) -> [SKIP][221] ([Intel XE#2136]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][222] ([Intel XE#1124]) -> [SKIP][223] ([Intel XE#2136]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][224] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][225] ([Intel XE#2423]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: [SKIP][226] ([Intel XE#367]) -> [SKIP][227] ([Intel XE#2423]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][228] ([Intel XE#2887]) -> [SKIP][229] ([Intel XE#2136]) +34 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][230] ([Intel XE#3432]) -> [SKIP][231] ([Intel XE#2136]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][232] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2136]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][234] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][235] ([Intel XE#2136]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][236] ([Intel XE#2724]) -> [SKIP][237] ([Intel XE#2136]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][238] ([Intel XE#2325]) -> [SKIP][239] ([Intel XE#2423]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][240] ([Intel XE#3007]) -> [SKIP][241] ([Intel XE#2325]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-5/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][242] ([Intel XE#2252]) -> [SKIP][243] ([Intel XE#2423]) +21 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][244] ([Intel XE#2390]) -> [SKIP][245] ([Intel XE#2423]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@srm: - shard-bmg: [FAIL][246] ([Intel XE#1178]) -> [SKIP][247] ([Intel XE#2423]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_content_protection@srm.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][248] ([Intel XE#2320]) -> [SKIP][249] ([Intel XE#2423]) +9 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][250] ([Intel XE#308]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][252] ([Intel XE#2321]) -> [SKIP][253] ([Intel XE#2423]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][254] ([Intel XE#2291]) -> [SKIP][255] ([Intel XE#2423]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][256] ([Intel XE#877]) -> [SKIP][257] ([Intel XE#2423]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][258] ([Intel XE#2286]) -> [SKIP][259] ([Intel XE#2423]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][260] ([Intel XE#1508]) -> [SKIP][261] ([Intel XE#2136]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][262] ([Intel XE#2244]) -> [SKIP][263] ([Intel XE#2136]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][264] ([Intel XE#1695]) -> [SKIP][265] ([Intel XE#2136]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][266] ([Intel XE#776]) -> [SKIP][267] ([Intel XE#2136]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-bmg: [SKIP][268] ([Intel XE#1138]) -> [SKIP][269] ([Intel XE#2423]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_feature_discovery@display-4x.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][270] ([Intel XE#2374]) -> [SKIP][271] ([Intel XE#2423]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_feature_discovery@psr1.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][272] ([Intel XE#2882]) -> [SKIP][273] ([Intel XE#2316]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][274] ([Intel XE#3820]) -> [FAIL][275] ([Intel XE#3321]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][276] ([Intel XE#2316]) -> [SKIP][277] ([Intel XE#2423]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][278] ([Intel XE#2882]) -> [SKIP][279] ([Intel XE#2423]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][280] ([Intel XE#2380]) -> [SKIP][281] ([Intel XE#2136]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][282] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][283] ([Intel XE#2136]) +10 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][284] ([Intel XE#455]) -> [SKIP][285] ([Intel XE#2136]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][286] ([Intel XE#2311]) -> [SKIP][287] ([Intel XE#2136]) +68 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][288] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][289] ([Intel XE#2311]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][290] ([Intel XE#651]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][292] ([Intel XE#651]) -> [SKIP][293] ([Intel XE#2136]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][294] ([Intel XE#2312]) -> [SKIP][295] ([Intel XE#2311]) +12 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][296] ([Intel XE#2311]) -> [SKIP][297] ([Intel XE#2312]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][299] ([Intel XE#2333]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][300] ([Intel XE#2333]) -> [SKIP][301] ([Intel XE#2136]) +28 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][302] ([Intel XE#2312]) -> [FAIL][303] ([Intel XE#2333]) +6 other tests fail [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][304] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][305] ([Intel XE#2136]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][306] ([Intel XE#2333]) -> [SKIP][307] ([Intel XE#2312]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: [DMESG-FAIL][308] ([Intel XE#877]) -> [FAIL][309] ([Intel XE#2333]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][310] ([Intel XE#2312]) -> [SKIP][311] ([Intel XE#2136]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][312] ([Intel XE#653]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][314] ([Intel XE#2313]) -> [SKIP][315] ([Intel XE#2136]) +63 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][316] ([Intel XE#653]) -> [SKIP][317] ([Intel XE#2136]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][318] ([Intel XE#2313]) -> [SKIP][319] ([Intel XE#2312]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2313]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][322] ([Intel XE#2352]) -> [SKIP][323] ([Intel XE#2136]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][324] ([Intel XE#2350]) -> [SKIP][325] ([Intel XE#2136]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][326] ([Intel XE#2502]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][328] ([Intel XE#2340]) -> [SKIP][329] ([Intel XE#2423]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_getfb@getfb2-accept-ccs.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][330] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][331] ([Intel XE#2423]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][332] ([Intel XE#1503]) -> [SKIP][333] ([Intel XE#2423]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][334] ([Intel XE#346]) -> [SKIP][335] ([Intel XE#2136]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][336] ([Intel XE#2934]) -> [SKIP][337] ([Intel XE#2136]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][338] ([Intel XE#2925]) -> [SKIP][339] ([Intel XE#2136]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][340] ([Intel XE#2927]) -> [SKIP][341] ([Intel XE#2136]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][342] ([Intel XE#2501]) -> [SKIP][343] ([Intel XE#2423]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: [SKIP][344] ([Intel XE#2486]) -> [SKIP][345] ([Intel XE#2423]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_panel_fitting@legacy.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_panel_fitting@legacy.html - shard-dg2-set2: [SKIP][346] ([Intel XE#455]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_panel_fitting@legacy.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][348] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][350] ([Intel XE#2763]) -> [SKIP][351] ([Intel XE#2423]) +6 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][352] ([Intel XE#2392]) -> [SKIP][353] ([Intel XE#2136]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][354] ([Intel XE#3309]) -> [SKIP][355] ([Intel XE#2136]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][356] ([Intel XE#2499]) -> [SKIP][357] ([Intel XE#2136]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][358] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][359] ([Intel XE#2446]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][360] ([Intel XE#1489]) -> [SKIP][361] ([Intel XE#2136]) +20 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][362] ([Intel XE#1489]) -> [SKIP][363] ([Intel XE#2136]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][364] ([Intel XE#2387]) -> [SKIP][365] ([Intel XE#2136]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][366] ([Intel XE#1122]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_psr2_su@frontbuffer-xrgb8888.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][368] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][369] ([Intel XE#2136] / [Intel XE#2351]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@kms_psr@pr-primary-page-flip.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@kms_psr@pr-primary-page-flip.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][370] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][371] ([Intel XE#2136]) +32 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@kms_psr@pr-sprite-plane-onoff.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][372] ([Intel XE#2414]) -> [SKIP][373] ([Intel XE#2136]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][374] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][375] ([Intel XE#2423]) +3 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][376] ([Intel XE#2330]) -> [SKIP][377] ([Intel XE#2423]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][378] ([Intel XE#2413]) -> [SKIP][379] ([Intel XE#2423]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][380] ([Intel XE#362]) -> [FAIL][381] ([Intel XE#1729]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][382] ([Intel XE#2450]) -> [SKIP][383] ([Intel XE#2423]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-bmg: [SKIP][384] ([Intel XE#1499]) -> [SKIP][385] ([Intel XE#2423]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@kms_vrr@flip-suspend.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][386] ([Intel XE#756]) -> [SKIP][387] ([Intel XE#2423]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][388] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][389] ([Intel XE#2423]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_eudebug@basic-exec-queues: - shard-dg2-set2: [SKIP][390] ([Intel XE#2905]) -> [SKIP][391] ([Intel XE#1130]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-433/igt@xe_eudebug@basic-exec-queues.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][392] ([Intel XE#3889]) -> [SKIP][393] ([Intel XE#1130]) +2 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_eudebug@basic-vm-access-parameters-userptr.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][394] ([Intel XE#2905]) -> [SKIP][395] ([Intel XE#1130]) +21 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][396] ([Intel XE#2322]) -> [SKIP][397] ([Intel XE#1130]) +18 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-rebind-imm: - shard-dg2-set2: [SKIP][398] ([Intel XE#288]) -> [SKIP][399] ([Intel XE#1130]) +4 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-435/igt@xe_exec_fault_mode@many-rebind-imm.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@xe_exec_fault_mode@many-rebind-imm.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [SKIP][400] ([Intel XE#1192]) -> [SKIP][401] ([Intel XE#2229]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_live_ktest@xe_bo.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_live_ktest@xe_bo.html * igt@xe_media_fill@media-fill: - shard-bmg: [SKIP][402] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][403] ([Intel XE#1130]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_media_fill@media-fill.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_media_fill@media-fill.html * igt@xe_mmap@pci-membarrier: - shard-bmg: [SKIP][404] ([Intel XE#4045]) -> [SKIP][405] ([Intel XE#1130]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_mmap@pci-membarrier.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_mmap@pci-membarrier.html * igt@xe_oa@oa-exponents: - shard-dg2-set2: [SKIP][406] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][407] ([Intel XE#1130]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-dg2-464/igt@xe_oa@oa-exponents.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-dg2-463/igt@xe_oa@oa-exponents.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][408] ([Intel XE#2248]) -> [SKIP][409] ([Intel XE#1130]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][410] ([Intel XE#1420]) -> [SKIP][411] ([Intel XE#1130]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][412] ([Intel XE#2245]) -> [SKIP][413] ([Intel XE#1130]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-2/igt@xe_pat@pat-index-xelp.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][414] ([Intel XE#2284]) -> [SKIP][415] ([Intel XE#1130]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-6/igt@xe_pm@d3cold-multiple-execs.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][416] ([Intel XE#944]) -> [SKIP][417] ([Intel XE#1130]) +4 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8193/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/shard-bmg-1/igt@xe_query@multigpu-query-mem-usage.html [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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [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#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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3820]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3820 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048 [Intel XE#4075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4075 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [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_8193 -> IGTPW_12445 IGTPW_12445: 12445 IGT_8193: 84511e278c1c6e598ccc21287a733cfc83d13e8a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2495-4cea1f90028925afcf1a0f8a0ef301f90349688c: 4cea1f90028925afcf1a0f8a0ef301f90349688c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12445/index.html [-- Attachment #2: Type: text/html, Size: 125020 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw 2025-01-16 6:17 [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw Kunal Joshi ` (2 preceding siblings ...) 2025-01-16 11:10 ` ✗ Xe.CI.Full: " Patchwork @ 2025-02-10 12:23 ` Sharma, Swati2 3 siblings, 0 replies; 5+ messages in thread From: Sharma, Swati2 @ 2025-02-10 12:23 UTC (permalink / raw) To: Kunal Joshi, igt-dev Hi Kunal, On 16-01-2025 11:47 am, Kunal Joshi wrote: > Instead of checking only currrent modes, > find combination of modes in mst topology > that can be accomodated in current link bw. > > Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2633 > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > tests/kms_display_modes.c | 20 +++++++++++++++++--- > 1 file changed, 17 insertions(+), 3 deletions(-) > > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c > index e41c60cc0..a582ba1a9 100644 > --- a/tests/kms_display_modes.c > +++ b/tests/kms_display_modes.c > @@ -60,6 +60,22 @@ typedef struct { > int n_pipes; > } data_t; > > +static bool fit_modes_in_bw(data_t *data) > +{ > + bool found; > + int ret; > + > + ret = igt_display_try_commit_atomic(&data->display, > + DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + if (ret != 0) { > + found = igt_override_all_active_output_modes_to_fit_bw(&data->display); > + igt_require_f(found, > + "No valid mode combo found for modeset\n"); > + } > + return true; > +} > + > /* Get higher mode supported by panel. */ > static drmModeModeInfo *get_highres_mode(igt_output_t *output) > { > @@ -279,7 +295,6 @@ static void run_extendedmode_negative(data_t *data, int pipe1, int pipe2) > struct igt_fb fbs[2]; > igt_display_t *display = &data->display; > igt_plane_t *plane[2]; > - int ret; > > igt_display_reset(display); > > @@ -306,8 +321,7 @@ static void run_extendedmode_negative(data_t *data, int pipe1, int pipe2) > igt_output_override_mode(data->mst_output[1], &data->mode_mst[1]); > > igt_require(intel_pipe_output_combo_valid(display)); > - ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > - igt_assert(ret != 0 && errno == ENOSPC); > + igt_assert_f(fit_modes_in_bw(data), "Unable to fit modes in bw\n"); Don't we have to check 2nd condition? errno == ENOSPC? > } > > igt_main ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-02-10 12:23 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-16 6:17 [PATCH i-g-t] tests/kms_display_modes: fit modes in mst bw Kunal Joshi 2025-01-16 7:28 ` ✗ Xe.CI.BAT: failure for " Patchwork 2025-01-16 7:30 ` ✗ i915.CI.BAT: " Patchwork 2025-01-16 11:10 ` ✗ Xe.CI.Full: " Patchwork 2025-02-10 12:23 ` [PATCH i-g-t] " Sharma, Swati2
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox