* [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test
@ 2025-01-17 8:20 Jan Sokolowski
2025-01-17 11:04 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,v3,1/1] " Patchwork
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Jan Sokolowski @ 2025-01-17 8:20 UTC (permalink / raw)
To: igt-dev; +Cc: Jan Sokolowski
In some cases, ccs_mode_all_engines can fail,
which will cause test fixture to not execute properly
and put the rest of the tests in an unstable state. Also,
ccs_mode_all_engines changes the state of the card for
other tests as well, thus it should clean after itself too,
which until now it didn't do.
Refactor exec-queue-placements test so that all possible
failure paths are serviced, and add a proper cleanup method,
ccs_mode_restore.
Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
---
v2: Forgot proper path in title
v3: More changes. Moved test back to where it originally was
---
tests/intel/xe_eudebug.c | 41 ++++++++++++++++++++++++++++++++++------
1 file changed, 35 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
index 91e9ae885..9787183ed 100644
--- a/tests/intel/xe_eudebug.c
+++ b/tests/intel/xe_eudebug.c
@@ -2797,7 +2797,7 @@ static void ccs_mode_all_engines(int num_gt)
igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0);
igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0);
- igt_assert(num_slices == ccs_mode);
+ igt_require(num_slices == ccs_mode);
close(gt_fd);
}
@@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt)
igt_require(num_gts_with_ccs_mode > 0);
}
+static void ccs_mode_restore(int num_gt)
+{
+ int fd, gt, gt_fd, ccs_mode, num_slices;
+
+ for (gt = 0; gt < num_gt; gt++) {
+ fd = drm_open_driver(DRIVER_XE);
+ gt_fd = xe_sysfs_gt_open(fd, gt);
+ close(fd);
+
+ if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0)
+ continue;
+
+ igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0);
+ igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0);
+ igt_assert(ccs_mode == 1);
+ close(gt_fd);
+ }
+}
+
igt_main
{
bool was_enabled;
@@ -2920,16 +2939,26 @@ igt_main
test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16);
igt_subtest_group {
- igt_fixture {
+ bool restore_ccs = false;
+
+ igt_subtest("exec-queue-placements") {
drm_close_driver(fd);
+ fd = -1;
ccs_mode_all_engines(gt_count);
+ restore_ccs = true;
fd = drm_open_driver(DRIVER_XE);
- }
-
- igt_subtest("exec-queue-placements")
test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true);
+ }
+ igt_fixture {
+ if (restore_ccs) {
+ drm_close_driver(fd);
+ fd = -1;
+ ccs_mode_restore(gt_count);
+ }
+ if (fd == -1)
+ fd = drm_open_driver(DRIVER_XE);
+ }
}
-
igt_fixture {
xe_eudebug_enable(fd, was_enabled);
drm_close_driver(fd);
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✗ i915.CI.BAT: failure for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski @ 2025-01-17 11:04 ` Patchwork 2025-01-17 12:01 ` [PATCH i-g-t v3 1/1] " Manszewski, Christoph ` (5 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-17 11:04 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12373 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from IGT_8196 -> IGTPW_12454 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12454 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12454, 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_12454/index.html Participating hosts (42 -> 43) ------------------------------ Additional (2): bat-dg2-14 bat-dg1-7 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12454: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-adlp-9: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-adlp-9/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-adlp-9/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12454 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@gem_mmap@basic.html - bat-dg2-14: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@gem_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@gem_tiled_pread_basic.html * igt@i915_module_load@load: - fi-pnv-d510: [PASS][9] -> [ABORT][10] ([i915#13203]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/fi-pnv-d510/igt@i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/fi-pnv-d510/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#11681] / [i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@i915_pm_rps@basic-api.html - bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#11681] / [i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-mtlp-8/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-mtlp-8/igt@i915_selftest@live.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][16] ([i915#4215]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-14: NOTRUN -> [SKIP][17] ([i915#4215] / [i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4212]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#3840]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-14: NOTRUN -> [SKIP][24] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-7: NOTRUN -> [SKIP][25] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#5274]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-14: NOTRUN -> [SKIP][27] ([i915#5354]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html - bat-dg1-7: NOTRUN -> [SKIP][28] ([i915#5354]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][29] ([i915#1072] / [i915#9732]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-14: NOTRUN -> [SKIP][30] ([i915#1072] / [i915#9732]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-14: NOTRUN -> [SKIP][31] ([i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-7: NOTRUN -> [SKIP][32] ([i915#3555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-14: NOTRUN -> [SKIP][33] ([i915#3708]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][34] ([i915#3708] / [i915#4077]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#3708]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg1-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg2-14: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-dg2-14: NOTRUN -> [SKIP][37] ([i915#3291] / [i915#3708]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-dg2-14/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][38] ([i915#13494]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-mtlp-9/igt@i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][40] ([i915#12061]) -> [PASS][41] +1 other test pass [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-arlh-3/igt@i915_selftest@live@workarounds.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [DMESG-FAIL][42] ([i915#12061]) -> [PASS][43] +1 other test pass [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8196/bat-arls-5/igt@i915_selftest@live@workarounds.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/bat-arls-5/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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8196 -> IGTPW_12454 * Linux: CI_DRM_15973 -> CI_DRM_15974 CI-20190529: 20190529 CI_DRM_15973: a15d2a84505eed8dbb58911147e44752734f3a88 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15974: 48e8781781323a28fabb378bcc79b3f48c1bcae0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12454: 869da313bdf1dbd8ecc8d012205411b1b5daefe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12454/index.html [-- Attachment #2: Type: text/html, Size: 15615 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski 2025-01-17 11:04 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,v3,1/1] " Patchwork @ 2025-01-17 12:01 ` Manszewski, Christoph 2025-01-17 18:21 ` ✗ Xe.CI.Full: failure for series starting with [i-g-t,v3,1/1] " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Manszewski, Christoph @ 2025-01-17 12:01 UTC (permalink / raw) To: Jan Sokolowski, igt-dev Hi Jan, On 17.01.2025 09:20, Jan Sokolowski wrote: > In some cases, ccs_mode_all_engines can fail, > which will cause test fixture to not execute properly > and put the rest of the tests in an unstable state. Also, > ccs_mode_all_engines changes the state of the card for > other tests as well, thus it should clean after itself too, > which until now it didn't do. > > Refactor exec-queue-placements test so that all possible > failure paths are serviced, and add a proper cleanup method, > ccs_mode_restore. > > Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com> > --- > > v2: Forgot proper path in title > v3: More changes. Moved test back to where it originally was Sorry I missed that version and replied to v2 earlier, though some of my comments still stand. > > --- > > tests/intel/xe_eudebug.c | 41 ++++++++++++++++++++++++++++++++++------ > 1 file changed, 35 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c > index 91e9ae885..9787183ed 100644 > --- a/tests/intel/xe_eudebug.c > +++ b/tests/intel/xe_eudebug.c > @@ -2797,7 +2797,7 @@ static void ccs_mode_all_engines(int num_gt) > > igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0); > igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); > - igt_assert(num_slices == ccs_mode); > + igt_require(num_slices == ccs_mode); Can you explain this change? We successfully write ccs_mode but we expect to don't read back the written value? I admit that I don't know how this setting works, but that looks suspicious at first glance. > close(gt_fd); > } > > @@ -2805,6 +2805,25 @@ static void ccs_mode_all_engines(int num_gt) > igt_require(num_gts_with_ccs_mode > 0); > } > > +static void ccs_mode_restore(int num_gt) > +{ > + int fd, gt, gt_fd, ccs_mode, num_slices; > + > + for (gt = 0; gt < num_gt; gt++) { > + fd = drm_open_driver(DRIVER_XE); > + gt_fd = xe_sysfs_gt_open(fd, gt); > + close(fd); > + > + if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0) > + continue; > + > + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); See my comment from v2. > + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); > + igt_assert(ccs_mode == 1); > + close(gt_fd); > + } > +} > + > igt_main > { > bool was_enabled; > @@ -2920,16 +2939,26 @@ igt_main > test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16); > > igt_subtest_group { > - igt_fixture { > + bool restore_ccs = false; > + > + igt_subtest("exec-queue-placements") { > drm_close_driver(fd); > + fd = -1; > ccs_mode_all_engines(gt_count); > + restore_ccs = true; Do we need this flag? I would assume, that we always want to restore the previous state. It would just have no effect at worst. > fd = drm_open_driver(DRIVER_XE); > - } > - > - igt_subtest("exec-queue-placements") > test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true); > + } > + igt_fixture { > + if (restore_ccs) { > + drm_close_driver(fd); > + fd = -1; > + ccs_mode_restore(gt_count); > + } > + if (fd == -1) > + fd = drm_open_driver(DRIVER_XE); Like in my comment in v2 - that looks like a weird workaround for skipping too early in the fixture. Thanks, Christoph > + } > } > - > igt_fixture { > xe_eudebug_enable(fd, was_enabled); > drm_close_driver(fd); ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski 2025-01-17 11:04 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,v3,1/1] " Patchwork 2025-01-17 12:01 ` [PATCH i-g-t v3 1/1] " Manszewski, Christoph @ 2025-01-17 18:21 ` Patchwork 2025-01-20 6:18 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-17 18:21 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 133818 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from XEIGT_8196_full -> XEIGTPW_12454_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12454_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12454_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_12454_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_psr@psr2-primary-page-flip@edp-1: - shard-lnl: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@kms_psr@psr2-primary-page-flip@edp-1.html #### Warnings #### * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][6] ([Intel XE#2423]) -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_sriov_auto_provisioning@fair-allocation}: - shard-bmg: [SKIP][8] ([Intel XE#1130]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@xe_sriov_auto_provisioning@fair-allocation.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@xe_sriov_auto_provisioning@fair-allocation.html * {igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling}: - shard-lnl: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html Known issues ------------ Here are the changes found in XEIGTPW_12454_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_setmaster@master-drop-set-shared-fd: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#3453]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@core_setmaster@master-drop-set-shared-fd.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@core_setmaster@master-drop-set-shared-fd.html * igt@core_setmaster@master-drop-set-user: - shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#3249]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@core_setmaster@master-drop-set-user.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@eof: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2134]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@fbdev@eof.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@fbdev@eof.html - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@fbdev@eof.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@fbdev@eof.html * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1125]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3157]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#873]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#3768]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#664]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#3908]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#316]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2327]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-lnl: NOTRUN -> [DMESG-WARN][32] ([Intel XE#1725]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2136]) +28 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_big_fb@x-tiled-addfb.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_big_fb@x-tiled-addfb.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +12 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2314] / [Intel XE#2894]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2191]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2191]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#367]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#367]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1512]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +14 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#2907]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3432]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][49] -> [ABORT][50] ([Intel XE#2625]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#787]) +160 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2136]) +20 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#314]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1152]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#306]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#306]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#373]) +13 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#373]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2252]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#3278]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#307]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#307]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2423]) +23 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_content_protection@legacy.html - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#1178]) +3 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#1178]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2321]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1424]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#455]) +15 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#309]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#323]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2291]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2291]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#1475]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#323]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1508]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2244]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#702]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1137]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1137]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#301]) +3 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#3321]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2316]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1421]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4: - shard-dg2-set2: [PASS][90] -> [FAIL][91] ([Intel XE#301]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2351]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#651]) +36 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#651]) +11 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2312]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#2333]) +3 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2136]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#656]) +34 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#653]) +38 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1158]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2340]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1470]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt@kms_hdmi_inject@inject-4k.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1450] / [Intel XE#2568]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1450]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][113] -> [FAIL][114] ([Intel XE#616]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@kms_plane_cursor@viewport.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_plane_cursor@viewport.html * igt@kms_plane_lowres@tiling-4: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#599]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: NOTRUN -> [FAIL][116] ([Intel XE#361]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +8 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2763]) +20 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1131]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#2446]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1489]) +14 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2893]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1122]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1406]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@pr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#3414] / [Intel XE#3904]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3414]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1127]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1435]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-bmg: [PASS][139] -> [FAIL][140] ([Intel XE#1174]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_sysfs_edid_timing.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1500]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@wait-busy-hang: - shard-bmg: [PASS][142] -> [SKIP][143] ([Intel XE#2423]) +122 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_vblank@wait-busy-hang.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1499]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@kms_vrr@negative-basic.html - shard-bmg: [PASS][145] -> [SKIP][146] ([Intel XE#1499]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_vrr@negative-basic.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#756]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [ABORT][148] ([Intel XE#2625]) +2 other tests abort [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html * igt@xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1447]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1123]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1130]) +6 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#3889]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@resume-one: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@xe_eudebug_online@resume-one.html * igt@xe_evict@evict-beng-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@xe_evict@evict-beng-large-multi-vm.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1130]) +10 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@xe_exec_basic@many-null-rebind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][159] -> [SKIP][160] ([Intel XE#1392]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1392]) +8 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#288]) +34 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2360]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2905]) +13 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3876]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#255]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@intel-bb-blit-x: - shard-bmg: [PASS][168] -> [SKIP][169] ([Intel XE#1130]) +251 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@xe_intel_bb@intel-bb-blit-x.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@xe_intel_bb@intel-bb-blit-x.html * igt@xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1192]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-7/igt@xe_live_ktest@xe_bo.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#560]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#560]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt@xe_media_fill@media-fill.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1416]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-3/igt@xe_mmap@vram.html * igt@xe_module_load@reload: - shard-bmg: [PASS][174] -> [FAIL][175] ([Intel XE#3546]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@xe_module_load@reload.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@xe_module_load@reload.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2248]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#2838] / [Intel XE#979]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][179] ([Intel XE#1173]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#2284] / [Intel XE#366]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][182] -> [ABORT][183] ([Intel XE#1358] / [Intel XE#1794]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-unbind-all.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-basic: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#584]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-8/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [PASS][185] -> [ABORT][186] ([Intel XE#1358]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@xe_pm@s3-basic-exec.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2284]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-mocs: - shard-lnl: [PASS][188] -> [ABORT][189] ([Intel XE#1358] / [Intel XE#1794]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-7/igt@xe_pm@s4-mocs.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-2/igt@xe_pm@s4-mocs.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#579]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#944]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#944]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_spin_batch@spin-all: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#1130]) +35 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@xe_spin_batch@spin-all.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#3342]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][195] ([Intel XE#3075] / [Intel XE#3084]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@core_hotunplug@hotreplug-lateclose: - shard-bmg: [SKIP][196] ([Intel XE#1885]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@core_hotunplug@hotreplug-lateclose.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][198] ([Intel XE#3249]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@info: - shard-bmg: [SKIP][200] ([Intel XE#2134]) -> [PASS][201] +2 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@fbdev@info.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@fbdev@info.html * igt@fbdev@pan: - shard-dg2-set2: [SKIP][202] ([Intel XE#2134]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@fbdev@pan.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@fbdev@pan.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][204] ([Intel XE#911]) -> [PASS][205] +3 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [SKIP][206] ([Intel XE#2136]) -> [PASS][207] +25 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][208] ([Intel XE#2136]) -> [PASS][209] +1 other test pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][210] ([Intel XE#3862]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [SKIP][212] ([Intel XE#2423]) -> [PASS][213] +107 other tests pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][214] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][215] +2 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_draw_crc@fill-fb.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_draw_crc@fill-fb.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-set2: [FAIL][216] -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][218] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][220] ([Intel XE#301]) -> [PASS][221] +6 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [SKIP][222] ([Intel XE#2316]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][224] -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [FAIL][226] ([Intel XE#3321]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][228] ([Intel XE#2597]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][230] ([Intel XE#2597]) -> [PASS][231] +1 other test pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - shard-bmg: [INCOMPLETE][232] -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [INCOMPLETE][234] -> [PASS][235] +1 other test pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#2049]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-432/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][238] ([Intel XE#886]) -> [PASS][239] +2 other tests pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2-set2: [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [PASS][241] +11 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][242] ([Intel XE#718]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@cursor: - shard-bmg: [SKIP][244] ([Intel XE#2446]) -> [PASS][245] +3 other tests pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_pm_rpm@cursor.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_pm_rpm@cursor.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-lnl: [FAIL][246] -> [PASS][247] +3 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][248] ([Intel XE#899]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-dg2-set2: [SKIP][250] ([Intel XE#1392]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][252] ([Intel XE#1130]) -> [PASS][253] +17 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-bmg: [FAIL][254] ([Intel XE#1999]) -> [PASS][255] +2 other tests pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: [ABORT][256] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@xe_pm@s2idle-basic.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [ABORT][258] ([Intel XE#1358]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [ABORT][260] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_vm@bind-once: - shard-bmg: [SKIP][262] ([Intel XE#1130]) -> [PASS][263] +241 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@xe_vm@bind-once.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@xe_vm@bind-once.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][264] ([Intel XE#873]) -> [SKIP][265] ([Intel XE#2423]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][266] ([Intel XE#2423]) -> [SKIP][267] ([Intel XE#2385]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][268] ([Intel XE#2327]) -> [SKIP][269] ([Intel XE#2136]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#2327]) +7 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-90.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg2-set2: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#316]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_big_fb@linear-64bpp-rotate-90.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][274] ([Intel XE#2136]) -> [SKIP][275] ([Intel XE#1124]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][276] ([Intel XE#1124]) -> [SKIP][277] ([Intel XE#2136]) +14 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#2328]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#607]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][282] ([Intel XE#610]) -> [SKIP][283] ([Intel XE#2136]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#1124]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][286] ([Intel XE#2423]) -> [SKIP][287] ([Intel XE#2314] / [Intel XE#2894]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][288] ([Intel XE#2423]) -> [SKIP][289] ([Intel XE#367]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][290] ([Intel XE#2423] / [i915#2575]) -> [SKIP][291] ([Intel XE#367]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][292] ([Intel XE#367]) -> [SKIP][293] ([Intel XE#2423]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][294] ([Intel XE#2887]) -> [SKIP][295] ([Intel XE#2136]) +20 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][296] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][297] ([Intel XE#2136]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][298] ([Intel XE#2907]) -> [SKIP][299] ([Intel XE#2136]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][300] ([Intel XE#2136]) -> [SKIP][301] ([Intel XE#2887]) +20 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][302] ([Intel XE#3432]) -> [SKIP][303] ([Intel XE#2136]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][304] ([Intel XE#3442]) -> [SKIP][305] ([Intel XE#2136]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#3432]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][308] ([Intel XE#2136]) -> [SKIP][309] ([Intel XE#2652] / [Intel XE#787]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][310] ([Intel XE#2136]) -> [SKIP][311] ([Intel XE#455] / [Intel XE#787]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2724]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_cdclk@mode-transition.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][314] ([Intel XE#2724]) -> [SKIP][315] ([Intel XE#2136]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][316] ([Intel XE#2325]) -> [SKIP][317] ([Intel XE#2423]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][318] ([Intel XE#2423]) -> [SKIP][319] ([Intel XE#2325]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][320] ([Intel XE#2252]) -> [SKIP][321] ([Intel XE#2423]) +13 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][322] ([Intel XE#2423]) -> [SKIP][323] ([Intel XE#2252]) +14 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg2-set2: [SKIP][324] ([Intel XE#373]) -> [SKIP][325] ([Intel XE#2423] / [i915#2575]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-fast.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][326] ([Intel XE#2341]) -> [SKIP][327] ([Intel XE#2423]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_content_protection@content-type-change.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][328] ([Intel XE#2390]) -> [SKIP][329] ([Intel XE#2423]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][330] ([Intel XE#1178]) -> [SKIP][331] ([Intel XE#2423]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_content_protection@lic-type-0.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-bmg: [SKIP][332] ([Intel XE#2423]) -> [SKIP][333] ([Intel XE#2341]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_content_protection@mei-interface.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][334] ([Intel XE#2341]) -> [FAIL][335] ([Intel XE#1178]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_content_protection@srm.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_content_protection@srm.html - shard-dg2-set2: [INCOMPLETE][336] ([Intel XE#2715]) -> [FAIL][337] ([Intel XE#1178]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_content_protection@srm.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][338] -> [FAIL][339] ([Intel XE#1178]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][340] ([Intel XE#2423]) -> [SKIP][341] ([Intel XE#2320]) +5 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][342] ([Intel XE#2320]) -> [SKIP][343] ([Intel XE#2423]) +8 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][344] ([Intel XE#2423]) -> [SKIP][345] ([Intel XE#2321]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#308]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x170.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [SKIP][348] ([Intel XE#2423]) -> [SKIP][349] ([Intel XE#2291]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][350] ([Intel XE#2423]) -> [SKIP][351] ([Intel XE#2286]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [SKIP][352] ([Intel XE#2291]) -> [SKIP][353] ([Intel XE#2423]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][354] ([Intel XE#2286]) -> [SKIP][355] ([Intel XE#2423]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][356] ([Intel XE#1508]) -> [SKIP][357] ([Intel XE#2136]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][358] ([Intel XE#2323]) -> [SKIP][359] ([Intel XE#2423]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_display_modes@mst-extended-mode-negative.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][360] ([Intel XE#2244]) -> [SKIP][361] ([Intel XE#2136]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#2244]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][364] ([Intel XE#2136]) -> [FAIL][365] ([Intel XE#1695]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-bmg: [SKIP][366] ([Intel XE#776]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_fbcon_fbt@psr.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-bmg: [SKIP][368] ([Intel XE#1138]) -> [SKIP][369] ([Intel XE#2423]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_feature_discovery@display-4x.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [SKIP][370] ([Intel XE#2316]) -> [SKIP][371] ([Intel XE#2423]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][372] ([Intel XE#2423]) -> [SKIP][373] ([Intel XE#2316]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][374] ([Intel XE#2136]) -> [SKIP][375] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][376] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][377] ([Intel XE#2136]) +5 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][378] ([Intel XE#2136]) -> [SKIP][379] ([Intel XE#455]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][380] ([Intel XE#2380]) -> [SKIP][381] ([Intel XE#2136]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][382] ([Intel XE#455]) -> [SKIP][383] ([Intel XE#2136]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][384] ([Intel XE#2136]) -> [SKIP][385] ([Intel XE#2311]) +30 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [SKIP][387] ([Intel XE#2311]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][388] ([Intel XE#2136]) -> [SKIP][389] ([Intel XE#651]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#2312]) +7 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][392] ([Intel XE#2311]) -> [SKIP][393] ([Intel XE#2136]) +34 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: [SKIP][394] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][395] ([Intel XE#651]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-slowdraw.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-slowdraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][396] ([Intel XE#2136]) -> [FAIL][397] ([Intel XE#2333]) +18 other tests fail [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][398] ([Intel XE#2333]) -> [SKIP][399] ([Intel XE#2312]) +3 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][400] ([Intel XE#2312]) -> [FAIL][401] ([Intel XE#2333]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][402] ([Intel XE#2333]) -> [SKIP][403] ([Intel XE#2136]) +18 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][404] ([Intel XE#651]) -> [SKIP][405] ([Intel XE#2136] / [Intel XE#2351]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][406] ([Intel XE#651]) -> [SKIP][407] ([Intel XE#2136]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][408] ([Intel XE#2311]) -> [SKIP][409] ([Intel XE#2312]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][410] ([Intel XE#2313]) -> [SKIP][411] ([Intel XE#2136]) +31 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg2-set2: [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][413] ([Intel XE#653]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [SKIP][415] ([Intel XE#2313]) +3 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][416] ([Intel XE#653]) -> [SKIP][417] ([Intel XE#2136]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][418] ([Intel XE#2136]) -> [SKIP][419] ([Intel XE#2313]) +33 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][420] ([Intel XE#2313]) -> [SKIP][421] ([Intel XE#2312]) +5 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/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][422] ([Intel XE#2312]) -> [SKIP][423] ([Intel XE#2136]) +12 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][424] ([Intel XE#653]) -> [SKIP][425] ([Intel XE#2136] / [Intel XE#2351]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][426] ([Intel XE#2352]) -> [SKIP][427] ([Intel XE#2136]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#2350]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][430] ([Intel XE#2136]) -> [SKIP][431] ([Intel XE#653]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][432] ([Intel XE#2423]) -> [SKIP][433] ([Intel XE#2502]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: [SKIP][434] ([Intel XE#2423] / [i915#2575]) -> [SKIP][435] ([Intel XE#605]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][436] ([Intel XE#2340]) -> [SKIP][437] ([Intel XE#2423]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-set2: [SKIP][438] ([Intel XE#2423] / [i915#2575]) -> [SKIP][439] ([Intel XE#455]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_hdr@brightness-with-hdr.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][440] ([Intel XE#2423]) -> [SKIP][441] ([Intel XE#3374] / [Intel XE#3544]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][442] ([Intel XE#346]) -> [SKIP][443] ([Intel XE#2136]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][444] ([Intel XE#3012]) -> [SKIP][445] ([Intel XE#2136]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#2927]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][448] ([Intel XE#346]) -> [SKIP][449] ([Intel XE#2136]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][450] ([Intel XE#2927]) -> [SKIP][451] ([Intel XE#2136]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][452] ([Intel XE#2486]) -> [SKIP][453] ([Intel XE#2423]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-bmg: [SKIP][454] ([Intel XE#2423]) -> [SKIP][455] ([Intel XE#2486]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_panel_fitting@legacy.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][456] ([Intel XE#2423]) -> [SKIP][457] ([Intel XE#2763]) +3 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][458] ([Intel XE#2763]) -> [SKIP][459] ([Intel XE#2423]) +3 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_pm_backlight@fade: - shard-bmg: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#870]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_pm_backlight@fade.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#3309]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [SKIP][464] ([Intel XE#2136]) -> [FAIL][465] ([Intel XE#1430]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_pm_dc@dc6-dpms.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#2392]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][469] ([Intel XE#1129]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#2499]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][472] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][473] ([Intel XE#2446]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][474] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][475] ([Intel XE#2446]) +2 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][476] ([Intel XE#1489]) -> [SKIP][477] ([Intel XE#2136]) +14 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/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][478] ([Intel XE#2136]) -> [SKIP][479] ([Intel XE#1489]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#1489]) +11 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][482] ([Intel XE#2387]) -> [SKIP][483] ([Intel XE#2136]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#2387]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][486] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][487] ([Intel XE#2136]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-434/igt@kms_psr@fbc-pr-dpms.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][488] ([Intel XE#2136]) -> [SKIP][489] ([Intel XE#2234] / [Intel XE#2850]) +20 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_psr@fbc-psr-primary-render.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][490] ([Intel XE#2136]) -> [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-463/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-basic: - shard-bmg: [SKIP][492] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][493] ([Intel XE#2136]) +20 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_psr@psr-basic.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][494] ([Intel XE#2351]) -> [SKIP][495] ([Intel XE#2850] / [Intel XE#929]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@kms_psr@psr-cursor-plane-move.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][496] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-436/igt@kms_psr@psr-dpms.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-primary-render: - shard-bmg: [SKIP][498] ([Intel XE#2136]) -> [SKIP][499] ([Intel XE#2234]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_psr@psr2-primary-render.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][500] ([Intel XE#2414]) -> [SKIP][501] ([Intel XE#2136]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: [SKIP][502] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][503] ([Intel XE#2423]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-90.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][504] ([Intel XE#2423]) -> [SKIP][505] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][506] ([Intel XE#2423]) -> [SKIP][507] ([Intel XE#2413]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: [SKIP][508] ([Intel XE#2413]) -> [SKIP][509] ([Intel XE#2423]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][510] ([Intel XE#2423]) -> [SKIP][511] ([Intel XE#2426]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-suspend: - shard-bmg: [SKIP][512] ([Intel XE#2423]) -> [SKIP][513] ([Intel XE#1499]) +2 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@kms_vrr@flip-suspend.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][514] ([Intel XE#1499]) -> [SKIP][515] ([Intel XE#2423]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][516] ([Intel XE#2423]) -> [SKIP][517] ([Intel XE#756]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: [SKIP][518] ([Intel XE#756]) -> [SKIP][519] ([Intel XE#2423]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][520] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][521] ([Intel XE#2423]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#3889]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][524] ([Intel XE#2905]) -> [SKIP][525] ([Intel XE#1130]) +12 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: [SKIP][526] ([Intel XE#1130]) -> [SKIP][527] ([Intel XE#2905]) +10 other tests skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: [SKIP][528] ([Intel XE#3889]) -> [SKIP][529] ([Intel XE#1130]) +1 other test skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt@xe_eudebug_online@reset-with-attention: - shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [SKIP][531] ([Intel XE#2905]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@xe_eudebug_online@reset-with-attention.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-436/igt@xe_eudebug_online@reset-with-attention.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][532] ([Intel XE#2322]) -> [SKIP][533] ([Intel XE#1130]) +16 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#2322]) +16 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][536] ([Intel XE#1130]) -> [SKIP][537] ([Intel XE#288]) +2 other tests skip [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][538] ([Intel XE#288]) -> [SKIP][539] ([Intel XE#1130]) +2 other tests skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-463/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: [SKIP][540] ([Intel XE#2905]) -> [SKIP][541] ([Intel XE#1130]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][542] ([Intel XE#2833]) -> [SKIP][543] ([Intel XE#1192]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html * igt@xe_mmap@small-bar: - shard-bmg: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#586]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@xe_mmap@small-bar.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@xe_mmap@small-bar.html * igt@xe_oa@disabled-read-error: - shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#2541] / [Intel XE#3573]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@xe_oa@disabled-read-error.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_oa@disabled-read-error.html * igt@xe_oa@rc6-disable: - shard-dg2-set2: [SKIP][548] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][549] ([Intel XE#1130]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-433/igt@xe_oa@rc6-disable.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-434/igt@xe_oa@rc6-disable.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][550] ([Intel XE#2248]) -> [SKIP][551] ([Intel XE#1130]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-7/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][552] ([Intel XE#1130]) -> [SKIP][553] ([Intel XE#2236]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][554] ([Intel XE#2284]) -> [SKIP][555] ([Intel XE#1130]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@xe_pm@d3cold-mocs.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][556] ([Intel XE#944]) -> [SKIP][557] ([Intel XE#1130]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][558] ([Intel XE#1130]) -> [SKIP][559] ([Intel XE#944]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: [SKIP][560] ([Intel XE#1130]) -> [SKIP][561] ([Intel XE#944]) +1 other test skip [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-6/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][562] ([Intel XE#3342]) -> [SKIP][563] ([Intel XE#1130]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8196/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [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#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [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#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8196 -> IGTPW_12454 * Linux: xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88 -> xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0 IGTPW_12454: 869da313bdf1dbd8ecc8d012205411b1b5daefe9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8196: 824553d05138bbfa48b9e60e9c2a741497c7c627 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2504-a15d2a84505eed8dbb58911147e44752734f3a88: a15d2a84505eed8dbb58911147e44752734f3a88 xe-2505-48e8781781323a28fabb378bcc79b3f48c1bcae0: 48e8781781323a28fabb378bcc79b3f48c1bcae0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12454/index.html [-- Attachment #2: Type: text/html, Size: 167218 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski ` (2 preceding siblings ...) 2025-01-17 18:21 ` ✗ Xe.CI.Full: failure for series starting with [i-g-t,v3,1/1] " Patchwork @ 2025-01-20 6:18 ` Patchwork 2025-01-20 6:19 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-20 6:18 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1216 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : success == Summary == CI Bug Log - changes from XEIGT_8198_BAT -> XEIGTPW_12458_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8198 -> IGTPW_12458 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12458: bd5959b642d1cc4f538f86b42f8d9b6ed962d764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/index.html [-- Attachment #2: Type: text/html, Size: 1775 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski ` (3 preceding siblings ...) 2025-01-20 6:18 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) Patchwork @ 2025-01-20 6:19 ` Patchwork 2025-01-20 8:06 ` ✗ Xe.CI.Full: failure " Patchwork 2025-01-20 16:00 ` ✗ i915.CI.Full: " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-20 6:19 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4012 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : success == Summary == CI Bug Log - changes from IGT_8198 -> IGTPW_12458 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html Participating hosts (44 -> 40) ------------------------------ Missing (4): bat-apl-1 fi-kbl-guc fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12458 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_mocs: - bat-twl-1: [PASS][3] -> [ABORT][4] ([i915#12919]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-twl-1/igt@i915_selftest@live@gt_mocs.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-twl-1/igt@i915_selftest@live@gt_mocs.html * igt@runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][5] ([i915#13350]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/fi-pnv-d510/igt@runner@aborted.html #### Possible fixes #### * igt@i915_module_load@load: - {bat-mtlp-9}: [DMESG-WARN][6] ([i915#13494]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-mtlp-9/igt@i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arlh-3/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-5/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-arls-5/igt@i915_selftest@live@workarounds.html - {bat-arls-6}: [DMESG-FAIL][12] ([i915#12061]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8198/bat-arls-6/igt@i915_selftest@live@workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/bat-arls-6/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8198 -> IGTPW_12458 * Linux: CI_DRM_15978 -> CI_DRM_15982 CI-20190529: 20190529 CI_DRM_15978: db09bf4e722f65089b91798e6d490d21b8dd8143 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15982: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12458: bd5959b642d1cc4f538f86b42f8d9b6ed962d764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html [-- Attachment #2: Type: text/html, Size: 4982 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski ` (4 preceding siblings ...) 2025-01-20 6:19 ` ✓ i915.CI.BAT: " Patchwork @ 2025-01-20 8:06 ` Patchwork 2025-01-20 16:00 ` ✗ i915.CI.Full: " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-20 8:06 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 129952 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from XEIGT_8198_full -> XEIGTPW_12458_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12458_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12458_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_12458_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_async_flips@alternate-sync-async-flip.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt@kms_async_flips@async-flip-with-page-flip-events.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@c-dp2: - shard-bmg: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html * igt@kms_properties@connector-properties-atomic@pipe-a-dp-4: - shard-dg2-set2: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_properties@connector-properties-atomic@pipe-a-dp-4.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_properties@connector-properties-atomic@pipe-a-dp-4.html #### Warnings #### * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][10] ([Intel XE#2423]) -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: [SKIP][12] ([Intel XE#1130]) -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@xe_sriov_auto_provisioning@exclusive-ranges.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@xe_sriov_auto_provisioning@exclusive-ranges.html New tests --------- New tests have been introduced between XEIGT_8198_full and XEIGTPW_12458_full: ### New IGT tests (11) ### * igt@kms_atomic_interruptible@legacy-cursor@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [6.28] s * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.85] s * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.83] s * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.62] s * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt@kms_sequence@get-idle@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.47] s * igt@kms_sequence@get-idle@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.24] s * igt@kms_sequence@get-idle@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s * igt@kms_sequence@get-idle@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.23] s Known issues ------------ Here are the changes found in XEIGTPW_12458_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3440]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@core_getversion@basic.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@core_getversion@basic.html * igt@core_hotunplug@hotreplug-lateclose: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#1885]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@core_hotunplug@hotreplug-lateclose.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_setmaster@master-drop-set-user: - shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#3249]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@info: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@fbdev@info.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@fbdev@info.html * igt@fbdev@pan: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2134]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@fbdev@pan.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@fbdev@pan.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2: - shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#827]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1407]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#316]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-180.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2136]) +24 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_big_fb@x-tiled-addfb.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_big_fb@x-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1512]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +13 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#307]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1188]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#309]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2291]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#2141]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1340]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#703]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1421]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#301]) +3 other tests fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2316]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#886]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2423] / [i915#2575]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#301]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@d-dp2: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3321]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2423]) +107 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_flip@flip-vs-panning-vs-hang.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#2882]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#2882]) +2 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#455]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2293] / [Intel XE#2380]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2380]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#651]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +15 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2136]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#653]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1503]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#346]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_lease@invalid-create-leases: - shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#2423] / [i915#2575]) +24 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_lease@invalid-create-leases.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_lease@invalid-create-leases.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#616]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_plane_cursor@viewport.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_plane_cursor@viewport.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2493]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#3007]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2763]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][96] ([Intel XE#1430]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@legacy-planes: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2446]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#2446]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2893]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1128]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1406]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr-basic: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@psr2-no-drrs@edp-1: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#3924]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt@kms_psr@psr2-no-drrs@edp-1.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_psr@psr2-no-drrs@edp-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#362]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1499]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt@kms_vrr@negative-basic.html * igt@xe_ccs@block-copy-compressed-inc-dimension: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1130]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_ccs@block-copy-compressed-inc-dimension.html * igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1280] / [Intel XE#455]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2905]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-8/igt@xe_eudebug@basic-client.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2905]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-large-cm: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#688]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@xe_evict@evict-large-cm.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#1130]) +59 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@xe_exec_basic@once-userptr-invalidate-race.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_exec_basic@once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#288]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_live_ktest@xe_bo: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1192]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#1192]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2229]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][122] -> [FAIL][123] ([Intel XE#3546]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@xe_module_load@reload-no-display.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_module_load@reload-no-display.html * igt@xe_oa@syncs-syncobj-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2541] / [Intel XE#3573]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@xe_oa@syncs-syncobj-wait-cfg.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][125] ([Intel XE#1173]) +1 other test fail [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#584]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-4/igt@xe_pm@s3-multiple-execs.html * igt@xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#944]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@xe_query@multigpu-query-gt-list.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#944]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-7/igt@xe_query@multigpu-query-gt-list.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#1130]) +241 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-bmg: [FAIL][132] ([Intel XE#3249]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@core_getversion@all-cards.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotrebind: - shard-bmg: [SKIP][134] ([Intel XE#1885]) -> [PASS][135] +1 other test pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@core_hotunplug@hotrebind.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@core_hotunplug@hotrebind.html * igt@fbdev@nullptr: - shard-bmg: [SKIP][136] ([Intel XE#2134]) -> [PASS][137] +2 other tests pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@fbdev@nullptr.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@fbdev@nullptr.html * igt@kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][138] ([Intel XE#2423]) -> [PASS][139] +104 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-999.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][140] ([Intel XE#911]) -> [PASS][141] +3 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][142] ([Intel XE#3908]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][144] ([Intel XE#2136]) -> [PASS][145] +28 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-dg2-set2: [SKIP][146] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-0.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_color@degamma@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][148] ([Intel XE#877]) -> [PASS][149] +1 other test pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_color@degamma@pipe-d-hdmi-a-3.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_color@degamma@pipe-d-hdmi-a-3.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][150] ([Intel XE#2291]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][152] ([Intel XE#1475]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@single-bo: - shard-bmg: [SKIP][154] ([Intel XE#3007]) -> [PASS][155] +2 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_cursor_legacy@single-bo.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_cursor_legacy@single-bo.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][156] ([Intel XE#2882]) -> [PASS][157] +1 other test pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a6-dp4.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][158] ([Intel XE#301]) -> [PASS][159] +7 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][160] ([Intel XE#2316]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank@b-dp2: - shard-bmg: [FAIL][162] ([Intel XE#3321]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][164] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][166] ([Intel XE#886]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-2/igt@kms_flip@plain-flip-ts-check-interruptible.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [SKIP][168] ([Intel XE#2136]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][170] ([Intel XE#718]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@i2c: - shard-bmg: [SKIP][172] ([Intel XE#2446]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_pm_rpm@i2c.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_pm_rpm@i2c.html * igt@kms_sequence@get-idle: - shard-dg2-set2: [SKIP][174] ([Intel XE#2423] / [i915#2575]) -> [PASS][175] +8 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_sequence@get-idle.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_sequence@get-idle.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][176] ([Intel XE#1435]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][178] ([Intel XE#2159]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][180] ([Intel XE#2771]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-lnl-7/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-lnl-6/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [SKIP][182] ([Intel XE#1130]) -> [PASS][183] +258 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][184] ([Intel XE#1192]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@reload: - shard-bmg: [FAIL][186] ([Intel XE#3546]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@xe_module_load@reload.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@xe_module_load@reload.html * igt@xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [SKIP][188] ([Intel XE#1130]) -> [PASS][189] +10 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@xe_vm@large-misaligned-binds-2097152.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@xe_vm@large-misaligned-binds-2097152.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][190] ([Intel XE#3084]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][192] ([Intel XE#2423]) -> [SKIP][193] ([Intel XE#2233]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [SKIP][194] ([Intel XE#2423]) -> [FAIL][195] ([Intel XE#827]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][196] ([Intel XE#2423]) -> [SKIP][197] ([Intel XE#2385]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][198] ([Intel XE#2370]) -> [SKIP][199] ([Intel XE#2423]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][200] ([Intel XE#2327]) -> [SKIP][201] ([Intel XE#2136]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][202] ([Intel XE#2136]) -> [SKIP][203] ([Intel XE#2327]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][204] ([Intel XE#316]) -> [SKIP][205] ([Intel XE#2136]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: [SKIP][206] ([Intel XE#1124]) -> [SKIP][207] ([Intel XE#2136]) +13 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: [SKIP][208] ([Intel XE#2136]) -> [SKIP][209] ([Intel XE#1124]) +13 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][210] ([Intel XE#1124]) -> [SKIP][211] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][212] ([Intel XE#2136]) -> [SKIP][213] ([Intel XE#610]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][214] ([Intel XE#1124]) -> [SKIP][215] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html - shard-dg2-set2: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#2136]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][218] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][219] ([Intel XE#2423]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][220] ([Intel XE#2423]) -> [SKIP][221] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][222] ([Intel XE#2191]) -> [SKIP][223] ([Intel XE#2423] / [i915#2575]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][224] ([Intel XE#2423]) -> [SKIP][225] ([Intel XE#367]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][226] ([Intel XE#367]) -> [SKIP][227] ([Intel XE#2423] / [i915#2575]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#2423]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][230] ([Intel XE#2887]) -> [SKIP][231] ([Intel XE#2136]) +17 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@bad-rotation-90-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_8198/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-dg2-set2: [SKIP][234] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][235] ([Intel XE#2136]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][236] ([Intel XE#2136]) -> [SKIP][237] ([Intel XE#2887]) +20 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][238] ([Intel XE#2887]) -> [SKIP][239] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html - shard-dg2-set2: [SKIP][240] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][241] ([Intel XE#2136] / [Intel XE#2351]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][242] ([Intel XE#3432]) -> [SKIP][243] ([Intel XE#2136]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][244] ([Intel XE#2136]) -> [SKIP][245] ([Intel XE#3432]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][246] ([Intel XE#2692] / [Intel XE#4010]) -> [SKIP][247] ([Intel XE#2136]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][248] ([Intel XE#2724]) -> [SKIP][249] ([Intel XE#2136]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][250] ([Intel XE#2325]) -> [SKIP][251] ([Intel XE#2423]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_chamelium_color@ctm-0-50.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][252] ([Intel XE#306]) -> [SKIP][253] ([Intel XE#2423] / [i915#2575]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_chamelium_color@ctm-green-to-red.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][254] ([Intel XE#2423]) -> [SKIP][255] ([Intel XE#2325]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-bmg: [SKIP][256] ([Intel XE#2252]) -> [SKIP][257] ([Intel XE#2423]) +13 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][258] ([Intel XE#2423]) -> [SKIP][259] ([Intel XE#2252]) +13 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][260] ([Intel XE#2252]) -> [SKIP][261] ([Intel XE#3007]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][262] ([Intel XE#373]) -> [SKIP][263] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][264] ([Intel XE#2341]) -> [SKIP][265] ([Intel XE#2423]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@kms_content_protection@content-type-change.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][266] ([Intel XE#2390]) -> [SKIP][267] ([Intel XE#2423]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][268] ([Intel XE#1178]) -> [SKIP][269] ([Intel XE#2423]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt@kms_content_protection@legacy.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-bmg: [SKIP][270] ([Intel XE#2423]) -> [SKIP][271] ([Intel XE#2341]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_content_protection@mei-interface.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][272] ([Intel XE#2423]) -> [FAIL][273] ([Intel XE#1178]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_content_protection@srm.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][274] ([Intel XE#2341]) -> [FAIL][275] ([Intel XE#1188]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_content_protection@uevent.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][276] ([Intel XE#2423]) -> [SKIP][277] ([Intel XE#2320]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg2-set2: [SKIP][278] ([Intel XE#455]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-32x32.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][280] ([Intel XE#3007]) -> [SKIP][281] ([Intel XE#2320]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html - shard-dg2-set2: [SKIP][282] ([Intel XE#2423] / [i915#2575]) -> [SKIP][283] ([Intel XE#455]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_cursor_crc@cursor-random-32x32.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][284] ([Intel XE#2423]) -> [SKIP][285] ([Intel XE#2321]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x170.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][286] ([Intel XE#2320]) -> [SKIP][287] ([Intel XE#2423]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: [SKIP][288] ([Intel XE#2321]) -> [SKIP][289] ([Intel XE#2423]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#2291]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][292] ([Intel XE#2423]) -> [SKIP][293] ([Intel XE#2286]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2-set2: [SKIP][294] ([Intel XE#323]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][296] ([Intel XE#2423]) -> [DMESG-WARN][297] ([Intel XE#877]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][298] ([Intel XE#877]) -> [SKIP][299] ([Intel XE#2423]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][300] ([Intel XE#2291]) -> [SKIP][301] ([Intel XE#2423]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][302] ([Intel XE#2286]) -> [SKIP][303] ([Intel XE#2423]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [SKIP][304] ([Intel XE#2136]) -> [FAIL][305] ([Intel XE#2141]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-bmg: [SKIP][306] ([Intel XE#2423]) -> [SKIP][307] ([Intel XE#2323]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_display_modes@mst-extended-mode-negative.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][308] ([Intel XE#2423]) -> [SKIP][309] ([Intel XE#1340]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][310] ([Intel XE#3070]) -> [SKIP][311] ([Intel XE#2136]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2244]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][314] ([Intel XE#2244]) -> [SKIP][315] ([Intel XE#2136]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][316] ([Intel XE#1695]) -> [SKIP][317] ([Intel XE#2136]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-bmg: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#776]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_fbcon_fbt@psr.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][320] ([Intel XE#776]) -> [SKIP][321] ([Intel XE#2136]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: [SKIP][322] ([Intel XE#2423]) -> [SKIP][323] ([Intel XE#2372]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_feature_discovery@chamelium.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-bmg: [SKIP][324] ([Intel XE#2373]) -> [SKIP][325] ([Intel XE#2423]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_feature_discovery@display-3x.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][326] ([Intel XE#2374]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_feature_discovery@psr1.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-bmg: [SKIP][328] ([Intel XE#2423]) -> [SKIP][329] ([Intel XE#2374]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_feature_discovery@psr2.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_feature_discovery@psr2.html - shard-dg2-set2: [SKIP][330] ([Intel XE#1135]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_feature_discovery@psr2.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][332] ([Intel XE#2423]) -> [SKIP][333] ([Intel XE#3007]) +8 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][334] ([Intel XE#2423]) -> [SKIP][335] ([Intel XE#2316]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][336] ([Intel XE#2316]) -> [SKIP][337] ([Intel XE#2423]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-bmg: [SKIP][338] ([Intel XE#2423]) -> [FAIL][339] ([Intel XE#2882]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: [SKIP][340] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][341] ([Intel XE#2136]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][342] ([Intel XE#2136]) -> [SKIP][343] ([Intel XE#2380]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2-set2: [SKIP][346] ([Intel XE#455]) -> [SKIP][347] ([Intel XE#2136]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html - shard-bmg: [SKIP][348] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][350] ([Intel XE#2136]) -> [SKIP][351] ([Intel XE#2311]) +38 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][352] ([Intel XE#2312]) -> [SKIP][353] ([Intel XE#2311]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][354] ([Intel XE#2311]) -> [SKIP][355] ([Intel XE#2312]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#2312]) +10 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][358] ([Intel XE#2333]) -> [SKIP][359] ([Intel XE#2136]) +17 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][360] ([Intel XE#2333]) -> [SKIP][361] ([Intel XE#2312]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][362] ([Intel XE#2136]) -> [FAIL][363] ([Intel XE#2333]) +20 other tests fail [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#2136] / [Intel XE#2231]) +11 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][366] ([Intel XE#2312]) -> [FAIL][367] ([Intel XE#2333]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [SKIP][368] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][369] ([Intel XE#2333]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][370] ([Intel XE#2136]) -> [SKIP][371] ([Intel XE#651]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html - shard-bmg: [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][373] ([Intel XE#2311]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][374] ([Intel XE#651]) -> [SKIP][375] ([Intel XE#2136]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][376] ([Intel XE#651]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][378] ([Intel XE#2311]) -> [SKIP][379] ([Intel XE#2136]) +31 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: [SKIP][380] ([Intel XE#2311]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][382] ([Intel XE#2352]) -> [SKIP][383] ([Intel XE#2136]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][385] ([Intel XE#2313]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][386] ([Intel XE#2313]) -> [SKIP][387] ([Intel XE#2312]) +2 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][388] ([Intel XE#2312]) -> [SKIP][389] ([Intel XE#2313]) +7 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][390] ([Intel XE#653]) -> [SKIP][391] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][392] ([Intel XE#2313]) -> [SKIP][393] ([Intel XE#2136]) +34 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][394] ([Intel XE#2136]) -> [SKIP][395] ([Intel XE#2313]) +41 other tests skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][397] ([Intel XE#2136]) +4 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#653]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][400] ([Intel XE#2136]) -> [SKIP][401] ([Intel XE#2352]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][402] ([Intel XE#2313]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2136]) +11 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][406] ([Intel XE#653]) -> [SKIP][407] ([Intel XE#2136]) +8 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][408] ([Intel XE#2423]) -> [SKIP][409] ([Intel XE#2502]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][410] ([Intel XE#2423]) -> [SKIP][411] ([Intel XE#2340]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][412] ([Intel XE#2423]) -> [SKIP][413] ([Intel XE#3374] / [Intel XE#3544]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][414] ([Intel XE#346]) -> [SKIP][415] ([Intel XE#2136]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_joiner@basic-big-joiner.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#346]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: [SKIP][418] ([Intel XE#346]) -> [SKIP][419] ([Intel XE#2136]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: [SKIP][420] ([Intel XE#2927]) -> [SKIP][421] ([Intel XE#2136]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][422] ([Intel XE#2423]) -> [SKIP][423] ([Intel XE#2493]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][424] ([Intel XE#361]) -> [SKIP][425] ([Intel XE#2423] / [i915#2575]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][426] ([Intel XE#2423]) -> [SKIP][427] ([Intel XE#2763]) +3 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][428] ([Intel XE#2763]) -> [SKIP][429] ([Intel XE#2423]) +4 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][430] ([Intel XE#870]) -> [SKIP][431] ([Intel XE#2136]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][432] ([Intel XE#2938]) -> [SKIP][433] ([Intel XE#2136]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-bmg: [SKIP][434] ([Intel XE#2136]) -> [SKIP][435] ([Intel XE#870]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_pm_backlight@fade.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#2392]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][438] ([Intel XE#1129]) -> [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][440] ([Intel XE#2499]) -> [SKIP][441] ([Intel XE#2136]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_pm_lpsp@kms-lpsp.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][442] ([Intel XE#2446]) -> [SKIP][443] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][444] ([Intel XE#2136]) -> [SKIP][445] ([Intel XE#1489]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-bmg: [SKIP][446] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][447] ([Intel XE#1489]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-4/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][448] ([Intel XE#1489]) -> [SKIP][449] ([Intel XE#2136]) +10 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#1489]) +12 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][452] ([Intel XE#1489]) -> [SKIP][453] ([Intel XE#2136]) +4 other tests skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#2387]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][456] ([Intel XE#2387]) -> [SKIP][457] ([Intel XE#2136]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][458] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][459] ([Intel XE#2234] / [Intel XE#2850]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_psr@fbc-psr-primary-render.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_psr@fbc-psr-primary-render.html - shard-dg2-set2: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#2850] / [Intel XE#929]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_psr@fbc-psr-primary-render.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-bmg: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#2234] / [Intel XE#2850]) +20 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-blt.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-page-flip: - shard-dg2-set2: [SKIP][464] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][465] ([Intel XE#2136] / [Intel XE#2351]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-page-flip.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-page-flip.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][466] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][467] ([Intel XE#2136]) +19 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-primary-render: - shard-dg2-set2: [SKIP][468] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][469] ([Intel XE#2136]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_psr@psr-primary-render.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_psr@psr-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#2414]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][472] ([Intel XE#2330]) -> [SKIP][473] ([Intel XE#2423]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][474] ([Intel XE#3007]) -> [SKIP][475] ([Intel XE#2330]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][476] ([Intel XE#2423]) -> [SKIP][477] ([Intel XE#2330]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][478] ([Intel XE#2330]) -> [SKIP][479] ([Intel XE#3007]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2-set2: [SKIP][480] ([Intel XE#1127]) -> [SKIP][481] ([Intel XE#2423] / [i915#2575]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][482] ([Intel XE#2423]) -> [SKIP][483] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][484] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][485] ([Intel XE#2423]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_sequence@get-idle: - shard-bmg: [SKIP][486] ([Intel XE#3007]) -> [SKIP][487] ([Intel XE#2423]) +5 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_sequence@get-idle.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_sequence@get-idle.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][488] ([Intel XE#1435]) -> [SKIP][489] ([Intel XE#2423]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][490] ([Intel XE#1729]) -> [SKIP][491] ([Intel XE#362]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][492] ([Intel XE#2423]) -> [SKIP][493] ([Intel XE#2168]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@kms_vrr@lobf.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-bmg: [SKIP][494] ([Intel XE#2423]) -> [SKIP][495] ([Intel XE#1499]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@kms_vrr@max-min.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][496] ([Intel XE#1499]) -> [SKIP][497] ([Intel XE#2423]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][498] ([Intel XE#3007]) -> [SKIP][499] ([Intel XE#756]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: [SKIP][500] ([Intel XE#2423] / [i915#2575]) -> [SKIP][501] ([Intel XE#756]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][502] ([Intel XE#756]) -> [SKIP][503] ([Intel XE#2423] / [i915#2575]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][504] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][505] ([Intel XE#2423]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][506] ([Intel XE#1130]) -> [SKIP][507] ([Intel XE#1280] / [Intel XE#455]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][508] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][509] ([Intel XE#1130]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][510] ([Intel XE#2504]) -> [SKIP][511] ([Intel XE#1130]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-exec-queues: - shard-bmg: [SKIP][512] ([Intel XE#2905]) -> [SKIP][513] ([Intel XE#1130]) +15 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-8/igt@xe_eudebug@basic-exec-queues.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#3889]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: [SKIP][516] ([Intel XE#3889]) -> [SKIP][517] ([Intel XE#1130]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@xe_eudebug@basic-vm-access-parameters-userptr.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#2905]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: [SKIP][520] ([Intel XE#3889]) -> [SKIP][521] ([Intel XE#1130]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: [SKIP][522] ([Intel XE#2905]) -> [SKIP][523] ([Intel XE#1130]) +3 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_online@single-step: - shard-bmg: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#2905]) +12 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@xe_eudebug_online@single-step.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-5/igt@xe_eudebug_online@single-step.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][526] ([Intel XE#2322]) -> [SKIP][527] ([Intel XE#1130]) +15 other tests skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2322]) +12 other tests skip [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][530] ([Intel XE#288]) -> [SKIP][531] ([Intel XE#1130]) +9 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html * igt@xe_mmap@small-bar: - shard-bmg: [SKIP][532] ([Intel XE#1130]) -> [SKIP][533] ([Intel XE#586]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@xe_mmap@small-bar.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@xe_mmap@small-bar.html * igt@xe_oa@invalid-create-userspace-config: - shard-dg2-set2: [SKIP][534] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][535] ([Intel XE#1130]) +2 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_oa@invalid-create-userspace-config.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][536] ([Intel XE#1130]) -> [SKIP][537] ([Intel XE#2541] / [Intel XE#3573]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-434/igt@xe_oa@syncs-ufence-wait-cfg.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-434/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][538] ([Intel XE#2248]) -> [SKIP][539] ([Intel XE#1130]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][540] ([Intel XE#1420]) -> [SKIP][541] ([Intel XE#1130]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-6/igt@xe_pat@pat-index-xehpc.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][542] ([Intel XE#2284]) -> [SKIP][543] ([Intel XE#1130]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@xe_pm@d3cold-mocs.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#2284]) +2 other tests skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-6/igt@xe_pm@d3cold-multiple-execs.html - shard-dg2-set2: [SKIP][546] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-435/igt@xe_pm@d3cold-multiple-execs.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#579]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#944]) +2 other tests skip [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-8/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-engines: - shard-bmg: [SKIP][552] ([Intel XE#944]) -> [SKIP][553] ([Intel XE#1130]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-5/igt@xe_query@multigpu-query-engines.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-1/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][554] ([Intel XE#944]) -> [SKIP][555] ([Intel XE#1130]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][556] ([Intel XE#3342]) -> [SKIP][557] ([Intel XE#1130]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8198/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#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#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [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#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [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#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8198 -> IGTPW_12458 * Linux: xe-2508-9033a16532f74ae36c48d729d0855a6e189039df -> xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 IGTPW_12458: bd5959b642d1cc4f538f86b42f8d9b6ed962d764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8198: 1d1ae626601119d249b530547b9e226c6a684144 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2508-9033a16532f74ae36c48d729d0855a6e189039df: 9033a16532f74ae36c48d729d0855a6e189039df xe-2513-aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2: aceaa93d2b1d5d5727652a02f5f0742dd9e07ac2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12458/index.html [-- Attachment #2: Type: text/html, Size: 165396 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski ` (5 preceding siblings ...) 2025-01-20 8:06 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-01-20 16:00 ` Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-20 16:00 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100322 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) URL : https://patchwork.freedesktop.org/series/143661/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15982_full -> IGTPW_12458_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12458_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12458_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12458_full: ### IGT changes ### #### Possible regressions #### * igt@debugfs_test@read_all_entries: - shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-5/igt@debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-6/igt@debugfs_test@read_all_entries.html * igt@gem_exec_balancer@individual: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt@gem_exec_balancer@individual.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@gem_exec_balancer@individual.html - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-2/igt@gem_exec_balancer@individual.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@gem_exec_balancer@individual.html * igt@gem_exec_schedule@preemptive-hang: - shard-dg1: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt@gem_exec_schedule@preemptive-hang.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_exec_schedule@preemptive-hang.html * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-tglu: [PASS][9] -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-7/igt@gem_ppgtt@blt-vs-render-ctx0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@i915_pm_rpm@debugfs-read: - shard-rkl: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@i915_pm_rpm@debugfs-read.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][12] -> [DMESG-FAIL][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-snb1/igt@i915_pm_rps@reset.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb1/igt@i915_pm_rps@reset.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][14] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_flip@blocking-wf_vblank@b-hdmi-a4.html * igt@kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][15] -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-4/igt@kms_pm_rpm@fences-dpms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@kms_pm_rpm@fences-dpms.html Known issues ------------ Here are the changes found in IGTPW_12458_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#6230]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8411]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9318]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#11078]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle@vcs1: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +18 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@drm_fdinfo@busy-idle@vcs1.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +26 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#12353]) +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb7/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][32] -> [ABORT][33] ([i915#10030] / [i915#7975] / [i915#8213]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-3/igt@gem_eio@hibernate.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][34] ([i915#13197] / [i915#13390]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk6/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@wait-wedge-10ms: - shard-mtlp: [PASS][35] -> [ABORT][36] ([i915#13193]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-4/igt@gem_eio@wait-wedge-10ms.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8555]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#6334]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt@gem_exec_capture@capture-invisible.html - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][45] ([i915#11965]) +2 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +19 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) +1 other test abort [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][65] ([i915#5493]) +1 other test timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +7 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +19 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][69] -> [ABORT][70] ([i915#10729]) +1 other test abort [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12917] / [i915#12964]) +1 other test timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8411]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +13 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][87] ([i915#13263] / [i915#13449]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb4/igt@gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][88] ([i915#13263] / [i915#13449]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk3/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3281] / [i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-dg1: ([PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123]) -> ([PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [DMESG-WARN][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142]) ([i915#4423]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt@i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt@i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt@i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt@i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt@i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt@i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt@i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt@i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt@i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt@i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt@i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt@i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-12/igt@i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt@i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt@i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-18/igt@i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt@i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-17/igt@i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt@i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#8399]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6590]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#11681] / [i915#6621]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7984]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#6188]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][148] ([i915#9311]) +1 other test dmesg-warn [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: NOTRUN -> [DMESG-WARN][149] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][150] ([i915#7443]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][151] ([i915#4817]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk7/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#7707]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7707]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7707]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-6/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4212]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4215]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-rkl: NOTRUN -> [FAIL][157] ([i915#10991] / [i915#13320] / [i915#13335]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][158] ([i915#10991] / [i915#13335]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: NOTRUN -> [DMESG-FAIL][159] ([i915#12964]) +1 other test dmesg-fail [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#12761]) +1 other test incomplete [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#8709]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8709]) +11 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#12967] / [i915#6228]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#12967]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9531]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#9531]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#9531]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][169] ([i915#1769]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4423] / [i915#4538] / [i915#5286]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#5286]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5286]) +8 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#5286]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5286]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#5286]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3638]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3638]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#5190]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4538]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#4538] / [i915#5190]) +19 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][181] +39 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#6095]) +147 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][183] +401 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#12313]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6095]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#10307] / [i915#6095]) +127 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#6095]) +24 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#12313]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#6095]) +68 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#12805]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [PASS][191] -> [INCOMPLETE][192] ([i915#12796]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#6095]) +18 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12796]) +1 other test incomplete [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#12313]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#12313]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#12313]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#6095]) +24 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#12313]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3742]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_audio@hdmi-audio: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][204] +45 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][205] +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-1/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][206] +15 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +11 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +10 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#7116] / [i915#9424]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#7118] / [i915#9424]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][214] ([i915#7173]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6944] / [i915#9424]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3299]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3116] / [i915#3299]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#3299]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9424]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#7116]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3555]) +12 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#13049]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8814]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3555]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#13049]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#13049]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#13049]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x64: - shard-dg1: [PASS][230] -> [DMESG-WARN][231] ([i915#4423]) +1 other test dmesg-warn [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt@kms_cursor_crc@cursor-random-64x64.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_cursor_crc@cursor-random-64x64.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8814]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13049]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12358] / [i915#7882]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#12358]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [PASS][236] -> [SKIP][237] +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-snb7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#4103] / [i915#4213]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][239] ([i915#4103]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#13046] / [i915#5354]) +7 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][241] +35 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][242] -> [FAIL][243] ([i915#2346]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9067]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9067]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#9723]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#8588]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#8588]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3804]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3555]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#1257]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][253] -> [SKIP][254] ([i915#12402]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3840] / [i915#9688]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3840]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#3840]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#3840]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#3840] / [i915#9053]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#4854]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#1839]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#1839]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#9337]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#4881]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#9934]) +9 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#9934]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9934]) +15 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#3637]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3637]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3637]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-snb: NOTRUN -> [FAIL][271] ([i915#11989]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@basic-flip-vs-dpms@b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][272] ([i915#12964]) +18 other tests dmesg-warn [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_flip@basic-flip-vs-dpms@b-hdmi-a2.html * igt@kms_flip@blocking-wf_vblank: - shard-dg1: [PASS][273] -> [FAIL][274] ([i915#11989]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-13/igt@kms_flip@blocking-wf_vblank.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a3: - shard-dg2: [PASS][275] -> [FAIL][276] ([i915#11989]) +3 other tests fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg2-5/igt@kms_flip@blocking-wf_vblank@c-hdmi-a3.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [FAIL][277] ([i915#11989]) +1 other test fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [FAIL][278] ([i915#11989]) +2 other tests fail [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#8381]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-mtlp: [PASS][280] -> [FAIL][281] ([i915#11989]) +5 other tests fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#2672] / [i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#2587] / [i915#2672]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#2587] / [i915#2672]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#2672] / [i915#3555]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#2672]) +6 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#2672]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8810] / [i915#8813]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/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-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8810]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8708]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#5354]) +46 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3458]) +26 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3023]) +26 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#8708]) +23 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#3458]) +14 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#8708]) +25 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#1825]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#1825]) +33 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#6118]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12713]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][305] ([i915#12713]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#12713]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#12713]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8228]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt@kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8228]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#12388]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#12394] / [i915#13522]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#12394] / [i915#13522]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#10656] / [i915#13522]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12339]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#12339]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#6301]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#13026]) +1 other test incomplete [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][319] ([i915#10647] / [i915#12169]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][320] ([i915#10647]) +1 other test fail [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8821]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#13046] / [i915#5354] / [i915#9423]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#6953]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][324] ([i915#8292]) +1 other test fail [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#12247]) +13 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#12247]) +9 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#12247]) +8 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#6953] / [i915#9423]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#6953]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#12247]) +7 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5354]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#5354]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#12343]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#9685]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#5978]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9685]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#4281]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#9340]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#9519]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-glk: NOTRUN -> [FAIL][343] ([i915#8717]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk7/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#9519]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#12916]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#9519]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][347] ([i915#10553]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#6524] / [i915#6805]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +14 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +10 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][351] ([i915#11520]) +10 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12316]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#11520]) +4 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +4 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#11520]) +9 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][356] ([i915#11520]) +7 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#9683]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][360] ([i915#9683]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +27 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-5/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +23 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#9688]) +3 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-2/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9732]) +9 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][365] ([i915#9732]) +12 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-7/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +23 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#12755]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#12755] / [i915#5190]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#5289]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][372] ([i915#13179]) +1 other test abort [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk8/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][373] ([i915#5465]) +2 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb4/igt@kms_setmode@basic.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#8809]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#8623]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [PASS][376] -> [DMESG-WARN][377] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-6/igt@kms_vblank@query-forked-hang.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_vblank@query-forked-hang.html * igt@kms_vblank@query-forked@pipe-a-hdmi-a-1: - shard-rkl: [PASS][378] -> [DMESG-WARN][379] ([i915#12964]) +21 other tests dmesg-warn [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-2/igt@kms_vblank@query-forked@pipe-a-hdmi-a-1.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@kms_vblank@query-forked@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][380] -> [INCOMPLETE][381] ([i915#12276]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][383] ([i915#9906]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-10/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#3555] / [i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][386] ([i915#3555] / [i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][388] ([i915#2437]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][389] ([i915#2437]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#2437]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#2437] / [i915#9412]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][392] ([i915#2437] / [i915#9412]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][393] -> [FAIL][394] ([i915#10538]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-4/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#7387]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-2/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#2434]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@perf@mi-rpc.html * igt@perf_pmu@busy-accuracy-2@vcs1: - shard-mtlp: [PASS][397] -> [FAIL][398] ([i915#4349]) +1 other test fail [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-8/igt@perf_pmu@busy-accuracy-2@vcs1.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-7/igt@perf_pmu@busy-accuracy-2@vcs1.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][399] +337 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-snb2/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][400] ([i915#4349]) +4 other tests fail [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#8850]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][402] ([i915#12549] / [i915#6806]) +1 other test fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - shard-dg1: [PASS][403] -> [FAIL][404] ([i915#11943]) +4 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all@bcs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][405] -> [FAIL][406] ([i915#4349]) +1 other test fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@vcs0: - shard-mtlp: [PASS][407] -> [FAIL][408] ([i915#11943]) +3 other tests fail [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@vcs0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@vcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][409] ([i915#8516]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][410] ([i915#3291] / [i915#3708]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-7/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][411] ([i915#3708]) +2 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-12/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][412] ([i915#9917]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg2-4/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][413] ([i915#9917]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][414] ([i915#12910]) +9 other tests fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][415] ([i915#12910]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][416] +17 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-2/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-shared-fd: - shard-tglu: [ABORT][417] -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-2/igt@core_setmaster@master-drop-set-shared-fd.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-3/igt@core_setmaster@master-drop-set-shared-fd.html * igt@gem_exec_balancer@full-late-pulse: - shard-mtlp: [FAIL][419] ([i915#13364]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-mtlp-3/igt@gem_exec_balancer@full-late-pulse.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-mtlp-5/igt@gem_exec_balancer@full-late-pulse.html * igt@gem_exec_parallel@engines: - shard-rkl: [DMESG-WARN][421] ([i915#12964]) -> [PASS][422] +30 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-rkl-2/igt@gem_exec_parallel@engines.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-rkl-3/igt@gem_exec_parallel@engines.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][423] -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@load: - shard-glk: ([PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [DMESG-WARN][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [DMESG-WARN][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448]) ([i915#118]) -> ([PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt@i915_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt@i915_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt@i915_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt@i915_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt@i915_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt@i915_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt@i915_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk6/igt@i915_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt@i915_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt@i915_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk7/igt@i915_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt@i915_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk5/igt@i915_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt@i915_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt@i915_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk4/igt@i915_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt@i915_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt@i915_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk6/igt@i915_module_load@load.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk3/igt@i915_module_load@load.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk8/igt@i915_module_load@load.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk2/igt@i915_module_load@load.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk9/igt@i915_module_load@load.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15982/shard-glk1/igt@i915_module_load@load.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt@i915_module_load@load.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt@i915_module_load@load.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk4/igt@i915_module_load@load.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk5/igt@i915_module_load@load.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/shard-glk1/igt@i915_module_load@load.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IG == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12458/index.html [-- Attachment #2: Type: text/html, Size: 111598 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-01-20 16:00 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-17 8:20 [PATCH i-g-t v3 1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test Jan Sokolowski 2025-01-17 11:04 ` ✗ i915.CI.BAT: failure for series starting with [i-g-t,v3,1/1] " Patchwork 2025-01-17 12:01 ` [PATCH i-g-t v3 1/1] " Manszewski, Christoph 2025-01-17 18:21 ` ✗ Xe.CI.Full: failure for series starting with [i-g-t,v3,1/1] " Patchwork 2025-01-20 6:18 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/1] tests/intel/xe_eudebug: refactor exec-queue-placements test (rev2) Patchwork 2025-01-20 6:19 ` ✓ i915.CI.BAT: " Patchwork 2025-01-20 8:06 ` ✗ Xe.CI.Full: failure " Patchwork 2025-01-20 16:00 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox