* [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame
@ 2024-03-14 5:54 Bhanuprakash Modem
2024-03-14 6:34 ` [i-g-t V2] " Bhanuprakash Modem
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-03-14 5:54 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem, Vandita Kulkarni
As XE driver taking longer time for pinning, re-calculate to
reduce the expected min flips per frame (by assuming the min
pinning time as 1.2 ms). Otherwise test will fail, since we
can't achieve those many flips per frame.
Cc: Vandita Kulkarni <vandita.kulkarni@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_async_flips.c | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index 2895168f7..ec2d86f4e 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -238,6 +238,19 @@ static void test_async_flip(data_t *data)
int ret, frame;
long long int fps;
struct timeval start, end, diff;
+ int min_flips_per_frame;
+
+ /*
+ * FIXME: As pinning is taking moretime in XE, recalculate min frames
+ * per frame (by considering the pinning time as 1.2 ms)
+ */
+ min_flips_per_frame = 1000 / (data->refresh_rate * 1.2);
+ igt_require(min_flips_per_frame);
+
+ if (min_flips_per_frame > MIN_FLIPS_PER_FRAME)
+ min_flips_per_frame = MIN_FLIPS_PER_FRAME;
+
+ igt_info("Expected min flips per frame: %d\n", min_flips_per_frame);
igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
@@ -296,10 +309,10 @@ static void test_async_flip(data_t *data)
timersub(&end, &start, &diff);
if (data->alternate_sync_async) {
- igt_assert_f(data->flip_interval < 1000.0 / (data->refresh_rate * MIN_FLIPS_PER_FRAME),
+ igt_assert_f(data->flip_interval < 1000.0 / (data->refresh_rate * min_flips_per_frame),
"Flip interval not significantly smaller than vblank interval\n"
"Flip interval: %lfms, Refresh Rate = %dHz, Threshold = %d\n",
- data->flip_interval, data->refresh_rate, MIN_FLIPS_PER_FRAME);
+ data->flip_interval, data->refresh_rate, min_flips_per_frame);
}
frame++;
@@ -307,7 +320,7 @@ static void test_async_flip(data_t *data)
if (!data->alternate_sync_async) {
fps = frame * 1000 / RUN_TIME;
- igt_assert_f((fps / 1000) > (data->refresh_rate * MIN_FLIPS_PER_FRAME),
+ igt_assert_f((fps / 1000) > (data->refresh_rate * min_flips_per_frame),
"FPS should be significantly higher than the refresh rate\n");
}
}
--
2.43.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [i-g-t V2] tests/kms_async_flips: Re-calculate min flips per frame 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem @ 2024-03-14 6:34 ` Bhanuprakash Modem 2024-03-14 7:05 ` ✓ Fi.CI.BAT: success for " Patchwork ` (6 subsequent siblings) 7 siblings, 0 replies; 9+ messages in thread From: Bhanuprakash Modem @ 2024-03-14 6:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem, Vandita Kulkarni As XE driver taking longer time for pinning, re-calculate to reduce the expected min flips per frame (by assuming the min pinning time as 1.2 ms). Otherwise test will fail, since we can't achieve those many flips per frame. V2: - Guard the logic with is_xe_device() Cc: Vandita Kulkarni <vandita.kulkarni@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_async_flips.c | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 2895168f7..a92f23c29 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -238,6 +238,21 @@ static void test_async_flip(data_t *data) int ret, frame; long long int fps; struct timeval start, end, diff; + int min_flips_per_frame = MIN_FLIPS_PER_FRAME; + + /* + * FIXME: As pinning is taking moretime in XE, recalculate min frames + * per frame (by considering the pinning time as 1.2 ms) + */ + if (is_xe_device(data->drm_fd)) { + min_flips_per_frame = 1000 / (data->refresh_rate * 1.2); + igt_require(min_flips_per_frame); + + if (min_flips_per_frame > MIN_FLIPS_PER_FRAME) + min_flips_per_frame = MIN_FLIPS_PER_FRAME; + } + + igt_info("Expected min flips per frame: %d\n", min_flips_per_frame); igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); @@ -296,10 +311,10 @@ static void test_async_flip(data_t *data) timersub(&end, &start, &diff); if (data->alternate_sync_async) { - igt_assert_f(data->flip_interval < 1000.0 / (data->refresh_rate * MIN_FLIPS_PER_FRAME), + igt_assert_f(data->flip_interval < 1000.0 / (data->refresh_rate * min_flips_per_frame), "Flip interval not significantly smaller than vblank interval\n" "Flip interval: %lfms, Refresh Rate = %dHz, Threshold = %d\n", - data->flip_interval, data->refresh_rate, MIN_FLIPS_PER_FRAME); + data->flip_interval, data->refresh_rate, min_flips_per_frame); } frame++; @@ -307,7 +322,7 @@ static void test_async_flip(data_t *data) if (!data->alternate_sync_async) { fps = frame * 1000 / RUN_TIME; - igt_assert_f((fps / 1000) > (data->refresh_rate * MIN_FLIPS_PER_FRAME), + igt_assert_f((fps / 1000) > (data->refresh_rate * min_flips_per_frame), "FPS should be significantly higher than the refresh rate\n"); } } -- 2.43.2 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_async_flips: Re-calculate min flips per frame 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem 2024-03-14 6:34 ` [i-g-t V2] " Bhanuprakash Modem @ 2024-03-14 7:05 ` Patchwork 2024-03-14 7:08 ` ✓ CI.xeBAT: " Patchwork ` (5 subsequent siblings) 7 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-03-14 7:05 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9654 bytes --] == Series Details == Series: tests/kms_async_flips: Re-calculate min flips per frame URL : https://patchwork.freedesktop.org/series/131121/ State : success == Summary == CI Bug Log - changes from IGT_7761 -> IGTPW_10832 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/index.html Participating hosts (35 -> 35) ------------------------------ Additional (1): bat-jsl-1 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10832 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@debugfs_test@basic-hwmon.html - bat-arls-1: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - bat-arls-1: NOTRUN -> [SKIP][4] ([i915#10213]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-14: [PASS][5] -> [FAIL][6] ([i915#10378]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-arls-1: NOTRUN -> [SKIP][8] ([i915#4083]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-1: NOTRUN -> [SKIP][9] ([i915#10197] / [i915#10211] / [i915#4079]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-1: NOTRUN -> [SKIP][10] ([i915#10196] / [i915#4077]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-1: NOTRUN -> [SKIP][11] ([i915#10206] / [i915#4079]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arls-1: NOTRUN -> [SKIP][12] ([i915#10209]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-arls-1: NOTRUN -> [SKIP][13] ([i915#10200]) +9 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][14] ([i915#4103]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-arls-1: NOTRUN -> [SKIP][15] ([i915#10202]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9886]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@kms_dsc@dsc-basic.html - bat-arls-1: NOTRUN -> [SKIP][17] ([i915#9886]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html - bat-arls-1: NOTRUN -> [SKIP][19] ([i915#10207]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-1: NOTRUN -> [SKIP][20] ([i915#9812]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-1: NOTRUN -> [SKIP][21] ([i915#9732]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][22] ([i915#3555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-1: NOTRUN -> [SKIP][23] ([i915#10208] / [i915#8809]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arls-1: NOTRUN -> [SKIP][24] ([i915#10212] / [i915#3708]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-arls-1: NOTRUN -> [SKIP][25] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-arls-1: NOTRUN -> [SKIP][26] ([i915#10214] / [i915#3708]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-1: NOTRUN -> [SKIP][27] ([i915#10216] / [i915#3708]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-arls-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - {bat-mtlp-9}: [WARN][28] -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@ring_submission: - bat-dg2-9: [ABORT][30] ([i915#10366]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/bat-dg2-9/igt@i915_selftest@live@ring_submission.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/bat-dg2-9/igt@i915_selftest@live@ring_submission.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7761 -> IGTPW_10832 CI-20190529: 20190529 CI_DRM_14429: 96e47e3f3a5952e104d56352872becdc0048d26e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10832: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/index.html IGT_7761: 67af6998a7e0467a7a0718cbbfe05a9fd383206f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/index.html [-- Attachment #2: Type: text/html, Size: 11437 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_async_flips: Re-calculate min flips per frame 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem 2024-03-14 6:34 ` [i-g-t V2] " Bhanuprakash Modem 2024-03-14 7:05 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-03-14 7:08 ` Patchwork 2024-03-14 7:26 ` ✓ CI.xeBAT: success for tests/kms_async_flips: Re-calculate min flips per frame (rev2) Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-03-14 7:08 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1473 bytes --] == Series Details == Series: tests/kms_async_flips: Re-calculate min flips per frame URL : https://patchwork.freedesktop.org/series/131121/ State : success == Summary == CI Bug Log - changes from XEIGT_7761_BAT -> XEIGTPW_10832_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10832_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-mixed-threads-small: - bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#1027]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7761/bat-dg2-oem2/igt@xe_evict@evict-mixed-threads-small.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10832/bat-dg2-oem2/igt@xe_evict@evict-mixed-threads-small.html [Intel XE#1027]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1027 Build changes ------------- * IGT: IGT_7761 -> IGTPW_10832 IGTPW_10832: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/index.html IGT_7761: 67af6998a7e0467a7a0718cbbfe05a9fd383206f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-938-96e47e3f3a5952e104d56352872becdc0048d26e: 96e47e3f3a5952e104d56352872becdc0048d26e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10832/index.html [-- Attachment #2: Type: text/html, Size: 2035 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_async_flips: Re-calculate min flips per frame (rev2) 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem ` (2 preceding siblings ...) 2024-03-14 7:08 ` ✓ CI.xeBAT: " Patchwork @ 2024-03-14 7:26 ` Patchwork 2024-03-14 7:44 ` ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-03-14 7:26 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 880 bytes --] == Series Details == Series: tests/kms_async_flips: Re-calculate min flips per frame (rev2) URL : https://patchwork.freedesktop.org/series/131121/ State : success == Summary == CI Bug Log - changes from XEIGT_7761_BAT -> XEIGTPW_10833_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7761 -> IGTPW_10833 IGTPW_10833: 10833 IGT_7761: 67af6998a7e0467a7a0718cbbfe05a9fd383206f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-938-96e47e3f3a5952e104d56352872becdc0048d26e: 96e47e3f3a5952e104d56352872becdc0048d26e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10833/index.html [-- Attachment #2: Type: text/html, Size: 1425 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_async_flips: Re-calculate min flips per frame (rev2) 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem ` (3 preceding siblings ...) 2024-03-14 7:26 ` ✓ CI.xeBAT: success for tests/kms_async_flips: Re-calculate min flips per frame (rev2) Patchwork @ 2024-03-14 7:44 ` Patchwork 2024-03-14 20:50 ` ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-03-14 7:44 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9555 bytes --] == Series Details == Series: tests/kms_async_flips: Re-calculate min flips per frame (rev2) URL : https://patchwork.freedesktop.org/series/131121/ State : success == Summary == CI Bug Log - changes from IGT_7761 -> IGTPW_10833 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/index.html Participating hosts (35 -> 33) ------------------------------ Additional (1): bat-jsl-1 Missing (3): bat-mtlp-8 bat-kbl-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10833 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@debugfs_test@basic-hwmon.html - bat-arls-1: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random-engines: - bat-arls-1: NOTRUN -> [SKIP][4] ([i915#10213]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-arls-1: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-1: NOTRUN -> [SKIP][7] ([i915#10197] / [i915#10211] / [i915#4079]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-1: NOTRUN -> [SKIP][8] ([i915#10196] / [i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-1: NOTRUN -> [SKIP][9] ([i915#10206] / [i915#4079]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arls-1: NOTRUN -> [SKIP][10] ([i915#10209]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@late_gt_pm: - bat-dg2-8: [PASS][11] -> [ABORT][12] ([i915#10366]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/bat-dg2-8/igt@i915_selftest@live@late_gt_pm.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-dg2-8/igt@i915_selftest@live@late_gt_pm.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-arls-1: NOTRUN -> [SKIP][13] ([i915#10200]) +9 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][14] ([i915#4103]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-arls-1: NOTRUN -> [SKIP][15] ([i915#10202]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9886]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@kms_dsc@dsc-basic.html - bat-arls-1: NOTRUN -> [SKIP][17] ([i915#9886]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html - bat-arls-1: NOTRUN -> [SKIP][19] ([i915#10207]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-1: NOTRUN -> [SKIP][20] ([i915#9812]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-1: NOTRUN -> [SKIP][21] ([i915#9732]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][22] ([i915#3555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-1: NOTRUN -> [SKIP][23] ([i915#10208] / [i915#8809]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arls-1: NOTRUN -> [SKIP][24] ([i915#10212] / [i915#3708]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-arls-1: NOTRUN -> [SKIP][25] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-arls-1: NOTRUN -> [SKIP][26] ([i915#10214] / [i915#3708]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-1: NOTRUN -> [SKIP][27] ([i915#10216] / [i915#3708]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-arls-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - {bat-mtlp-9}: [WARN][28] -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@ring_submission: - bat-dg2-9: [ABORT][30] ([i915#10366]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/bat-dg2-9/igt@i915_selftest@live@ring_submission.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/bat-dg2-9/igt@i915_selftest@live@ring_submission.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7761 -> IGTPW_10833 CI-20190529: 20190529 CI_DRM_14429: 96e47e3f3a5952e104d56352872becdc0048d26e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10833: 10833 IGT_7761: 67af6998a7e0467a7a0718cbbfe05a9fd383206f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/index.html [-- Attachment #2: Type: text/html, Size: 11408 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem ` (4 preceding siblings ...) 2024-03-14 7:44 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-03-14 20:50 ` Patchwork 2024-03-14 22:00 ` ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame (rev2) Patchwork 2024-03-15 8:42 ` [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Ville Syrjälä 7 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-03-14 20:50 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 93227 bytes --] == Series Details == Series: tests/kms_async_flips: Re-calculate min flips per frame URL : https://patchwork.freedesktop.org/series/131121/ State : failure == Summary == CI Bug Log - changes from IGT_7761_full -> IGTPW_10832_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10832_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10832_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_10832/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10832_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-internal-immediate: - shard-mtlp: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-8/igt@gem_eio@in-flight-internal-immediate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-5/igt@gem_eio@in-flight-internal-immediate.html * igt@gem_softpin@allocator-evict@vecs1: - shard-dg2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-2/igt@gem_softpin@allocator-evict@vecs1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@gem_softpin@allocator-evict@vecs1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-4.html * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3: - shard-dg2: NOTRUN -> [INCOMPLETE][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3.html * igt@kms_setmode@basic@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][7] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html Known issues ------------ Here are the changes found in IGTPW_10832_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@api_intel_bb@crc32.html * igt@core_hotunplug@unbind-rebind: - shard-dg1: [PASS][9] -> [DMESG-WARN][10] ([i915#4391] / [i915#4423]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-19/igt@core_hotunplug@unbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9318]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +20 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-8/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8414]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][16] -> [FAIL][17] ([i915#7742]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3281]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3936]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6335]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#6268]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][28] -> [FAIL][29] ([i915#6268]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-18/igt@gem_eio@reset-stress.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][41] ([i915#2846]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-5/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglu: NOTRUN -> [FAIL][44] ([i915#2842]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][45] ([i915#2842]) +2 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk1/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][46] -> [FAIL][47] ([i915#2876]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@gem_exec_fence@submit67.html - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +10 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: [PASS][60] -> [FAIL][61] ([i915#10378]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][66] ([i915#10378]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][69] ([i915#284]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-5/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#4270]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-7/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4885]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][90] ([i915#5889]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4077]) +11 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@gem_tiled_partial_pwrite_pread@writes.html - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][93] ([i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk6/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_10832/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@allowed-single: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][102] ([i915#6227]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][103] -> [INCOMPLETE][104] ([i915#9849]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [PASS][105] -> [INCOMPLETE][106] ([i915#9820] / [i915#9849]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#7091]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6590]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6621]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#6621]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6621]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][112] -> [INCOMPLETE][113] ([i915#7790]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb4/igt@i915_pm_rps@reset.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-snb1/igt@i915_pm_rps@reset.html - shard-mtlp: NOTRUN -> [FAIL][114] ([i915#8346]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-mtlp: [PASS][115] -> [SKIP][116] ([i915#7984]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-7/igt@i915_power@sanity.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6188]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][118] ([i915#9311]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][119] ([i915#7443]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#7707]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4212]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3826]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3826]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3638]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][130] +19 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +10 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#2705]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_big_joiner@basic.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#2705]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +31 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +99 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#10278]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +45 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10278]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#10278]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#10278]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307]) +164 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][146] +358 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7213] / [i915#9010]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3742]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7828]) +9 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9424]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3555]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8814]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#9809]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#4103]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9067]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#4103]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#4213]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9723]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9227]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3840] / [i915#9053]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3469]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-12/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3955]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3469]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#1839]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#1839]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-2/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9934]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][184] +20 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3637]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8381]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672]) +7 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8810]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: [PASS][194] -> [DMESG-WARN][195] ([i915#4423]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#8708]) +20 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5354]) +39 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#8708]) +12 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#5439]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][200] +32 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3023]) +11 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1825]) +19 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8708]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +20 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +22 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#4423]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3458]) +8 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@kms_hdr@bpc-switch.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-2/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#6301]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][212] +32 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][213] ([i915#4573]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8821]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8821]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8806]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: [PASS][218] -> [FAIL][219] ([i915#8292]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9423]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9423]) +11 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5176]) +5 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#5176] / [i915#9423]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#5176] / [i915#9423]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-1: - shard-rkl: [PASS][225] -> [INCOMPLETE][226] ([i915#8875]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-1.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5235] / [i915#9423]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#5235]) +7 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#5235]) +9 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#5235]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#5235]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#5354]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9293]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9685]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#5978]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#9295]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][239] ([i915#9301]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9519]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#9519]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html - shard-rkl: [PASS][243] -> [SKIP][244] ([i915#9519]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9519]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#6524]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][247] +27 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9808]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-8/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#9732]) +22 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#9732]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9688]) +9 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#9673] / [i915#9732]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9732]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9732]) +14 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#4884]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4235]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#4235] / [i915#5190]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#5289]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#4423] / [i915#5289]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#4235]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][261] ([i915#5465]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#8623]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#8623]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8623]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#8623]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][266] ([i915#9196]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9906]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#9906]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8808] / [i915#9906]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][270] ([i915#2437]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#2437] / [i915#9412]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#2437] / [i915#9412]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#7387]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-1/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: NOTRUN -> [FAIL][274] ([i915#4349]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8850]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#8850]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-8/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8807]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-4/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3708]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3291] / [i915#3708]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3291] / [i915#3708]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#9917]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][282] ([i915#9781]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-17/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#2575]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_submit_cl@bad-multisync-extension: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#2575]) +7 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-3/igt@v3d/v3d_submit_cl@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2575]) +7 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-5/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@single-in-sync: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#2575]) +15 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@v3d/v3d_submit_csd@single-in-sync.html * igt@v3d/v3d_wait_bo@bad-pad: - shard-snb: NOTRUN -> [SKIP][287] +72 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-snb2/igt@v3d/v3d_wait_bo@bad-pad.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#7711]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-2/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#7711]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#7711]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-16/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#7711]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-flags.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][292] ([i915#7742]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][294] ([i915#2842]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][296] ([i915#2842]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][298] ([i915#2842]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: [FAIL][300] ([i915#10378]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [FAIL][302] ([i915#10378]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][304] ([i915#5493]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [INCOMPLETE][306] ([i915#9820]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [FAIL][308] ([i915#3591]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][310] ([i915#10031]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][312] ([i915#5138]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][314] ([i915#3743]) -> [PASS][315] +1 other test pass [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][316] ([i915#1257]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-5/igt@kms_dp_aux_dev.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-mtlp: [DMESG-WARN][318] ([i915#1982]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-snb: [SKIP][320] -> [PASS][321] +1 other test pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][322] ([i915#433]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][324] ([i915#4281]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][326] ([i915#9519]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][328] ([i915#9196]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@perf_pmu@module-unload: - shard-snb: [INCOMPLETE][330] ([i915#9853]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb7/igt@perf_pmu@module-unload.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-snb4/igt@perf_pmu@module-unload.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][332] ([i915#9408] / [i915#9618]) -> [ABORT][333] ([i915#9618]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][334] ([i915#9846]) -> [INCOMPLETE][335] ([i915#9364]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [INCOMPLETE][336] ([i915#9820] / [i915#9849]) -> [ABORT][337] ([i915#9820]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][338] ([i915#9820] / [i915#9849]) -> [WARN][339] ([i915#7356]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [INCOMPLETE][340] -> [FAIL][341] ([i915#3591]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][342] ([i915#9433]) -> [SKIP][343] ([i915#9424]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-19/igt@kms_content_protection@mei-interface.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@kms_content_protection@mei-interface.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: [SKIP][344] ([i915#3555] / [i915#3840]) -> [SKIP][345] ([i915#3555] / [i915#3840] / [i915#4423]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg1-19/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][346] ([i915#4816]) -> [SKIP][347] ([i915#4070] / [i915#4816]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: [SKIP][348] ([i915#9673] / [i915#9732]) -> [SKIP][349] ([i915#9732]) +7 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-1/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: [SKIP][350] ([i915#9732]) -> [SKIP][351] ([i915#9673] / [i915#9732]) +4 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-1/igt@kms_psr@fbc-psr2-sprite-blt.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][352] ([i915#7484]) -> [FAIL][353] ([i915#9100]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][354] ([i915#5493]) -> [CRASH][355] ([i915#9351]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7761 -> IGTPW_10832 CI-20190529: 20190529 CI_DRM_14429: 96e47e3f3a5952e104d56352872becdc0048d26e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10832: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/index.html IGT_7761: 67af6998a7e0467a7a0718cbbfe05a9fd383206f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10832/index.html [-- Attachment #2: Type: text/html, Size: 113170 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame (rev2) 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem ` (5 preceding siblings ...) 2024-03-14 20:50 ` ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame Patchwork @ 2024-03-14 22:00 ` Patchwork 2024-03-15 8:42 ` [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Ville Syrjälä 7 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-03-14 22:00 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87468 bytes --] == Series Details == Series: tests/kms_async_flips: Re-calculate min flips per frame (rev2) URL : https://patchwork.freedesktop.org/series/131121/ State : failure == Summary == CI Bug Log - changes from IGT_7761_full -> IGTPW_10833_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10833_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10833_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_10833/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10833_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@individual: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-11/igt@gem_exec_balancer@individual.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-2/igt@gem_exec_balancer@individual.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size: - shard-dg2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4: - shard-dg1: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-19/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html Known issues ------------ Here are the changes found in IGTPW_10833_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +21 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][14] ([i915#7742]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3281]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#3936]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][21] ([i915#7297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-15/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#6335]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#6268]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-12/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][31] -> [FAIL][32] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg1-18/igt@gem_eio@reset-stress.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2846]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][40] ([i915#2842]) +3 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk1/igt@gem_exec_fair@basic-none-rrul@rcs0.html - shard-tglu: NOTRUN -> [FAIL][41] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][42] -> [FAIL][43] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +13 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk7/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-7/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][59] ([i915#10378]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#8289]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][62] ([i915#284]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-3/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-4/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@gem_partial_pwrite_pread@write.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-12/igt@gem_partial_pwrite_pread@write.html * igt@gem_pxp@create-regular-buffer: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-9/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-2/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#8411]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4885]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][82] ([i915#5889]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4879]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][86] ([i915#3323]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][90] -> [INCOMPLETE][91] ([i915#5566]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-glk1/igt@gen9_exec_parse@allowed-all.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-large: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][95] ([i915#6227]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk7/igt@i915_module_load@load.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#6590]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#6621]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][100] ([i915#8346]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6188]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@mman: - shard-dg2: [PASS][103] -> [ABORT][104] ([i915#10366]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-8/igt@i915_selftest@live@mman.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@i915_selftest@live@mman.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][105] ([i915#9311]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3826]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3826]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][115] -> [FAIL][116] ([i915#5138]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3638]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][119] +20 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +8 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2705]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_big_joiner@basic.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#2705]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +35 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +15 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#10278]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10278]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +35 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#10278]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307]) +147 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#10278]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +107 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][134] +354 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7213] / [i915#9010]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#7213]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3742]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-6/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4087]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-15/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7828]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#7828]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-6/igt@kms_content_protection@atomic.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7118] / [i915#9424]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_content_protection@atomic.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#9424]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#9424]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3359]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3359]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3555]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8814]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#9809]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#4213]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4103] / [i915#4213]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4103]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#5354]) +43 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][164] -> [FAIL][165] ([i915#2346]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9067]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#9067]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9227]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3804]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3840] / [i915#9053]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9053]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3469]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3469]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3955]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-7/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9934]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8381]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3637]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][182] +22 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][183] -> [FAIL][184] ([i915#2122]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3637]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1: - shard-glk: NOTRUN -> [FAIL][186] ([i915#79]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8381]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1: - shard-rkl: [PASS][188] -> [FAIL][189] ([i915#2122]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#2672]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8810]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8708]) +18 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8708]) +12 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5439]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][201] +29 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3458]) +7 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#10433] / [i915#3458]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1825]) +22 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#1825]) +19 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3458]) +22 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +13 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-5/igt@kms_hdr@static-toggle.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][210] +36 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][211] ([i915#4573]) +1 other test fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8821]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#3555]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][214] ([i915#8292]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][215] ([i915#8292]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9423]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9423]) +23 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5176]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#5176] / [i915#9423]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9423]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#5235] / [i915#9423]) +15 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5235]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#5235]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#5235]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#5235]) +19 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#5354]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-15/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#9293]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-4/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9685]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#5978]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9340]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][231] ([i915#9301]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9519]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9519]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9519]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#4077]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_pm_rpm@fences-dpms.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#6524]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][237] +29 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9808]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-4/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9683]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9673] / [i915#9732]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#9688]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#9732]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-6/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9732]) +25 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_psr@psr-cursor-render.html - shard-rkl: NOTRUN -> [SKIP][244] ([i915#9732]) +10 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9732]) +15 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-12/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#4884]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-16/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#4235]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#4235] / [i915#5190]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#5289]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#5289]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8809]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#8623]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][254] ([i915#8623]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8623]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8623]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][257] ([i915#9196]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9906]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][259] ([i915#9906]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8808] / [i915#9906]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][261] ([i915#2437]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2437] / [i915#9412]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][263] ([i915#2437] / [i915#9412]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#7387]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: NOTRUN -> [FAIL][265] ([i915#4349]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][266] ([i915#4349]) +3 other tests fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8850]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8807]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-2/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3708] / [i915#4077]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#3708] / [i915#4077]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#3291] / [i915#3708]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3291] / [i915#3708]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9917]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][274] ([i915#9781]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-15/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +7 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-12/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_submit_cl@bad-multisync-extension: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#2575]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-4/igt@v3d/v3d_submit_cl@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2575]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@single-in-sync: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#2575]) +15 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@v3d/v3d_submit_csd@single-in-sync.html * igt@v3d/v3d_wait_bo@bad-pad: - shard-snb: NOTRUN -> [SKIP][279] +71 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-snb7/igt@v3d/v3d_wait_bo@bad-pad.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7711]) +6 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#7711]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg1-19/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#7711]) +8 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#7711]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@vc4/vc4_tiling@get-bad-flags.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][284] ([i915#9846]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][286] ([i915#2842]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][288] ([i915#2842]) -> [PASS][289] +5 other tests pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_softpin@allocator-evict@ccs0: - shard-dg2: [INCOMPLETE][290] -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-2/igt@gem_softpin@allocator-evict@ccs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@gem_softpin@allocator-evict@ccs0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [INCOMPLETE][292] ([i915#5566]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-glk4/igt@gen9_exec_parse@allowed-single.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][294] ([i915#5138]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][296] ([i915#3743]) -> [PASS][297] +1 other test pass [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-mtlp: [DMESG-WARN][298] ([i915#1982]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][300] ([i915#9519]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][302] ([i915#9196]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@perf_pmu@module-unload: - shard-snb: [INCOMPLETE][304] ([i915#9853]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-snb7/igt@perf_pmu@module-unload.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-snb5/igt@perf_pmu@module-unload.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [INCOMPLETE][306] ([i915#9820]) -> [INCOMPLETE][307] ([i915#9697] / [i915#9820]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][308] ([i915#9820] / [i915#9849]) -> [WARN][309] ([i915#7356]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][310] ([i915#3458]) -> [SKIP][311] ([i915#10433] / [i915#3458]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][312] ([i915#10433] / [i915#3458]) -> [SKIP][313] ([i915#3458]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][314] ([i915#4816]) -> [SKIP][315] ([i915#4070] / [i915#4816]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][316] ([i915#3361]) -> [FAIL][317] ([i915#9295]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][318] ([i915#4281]) -> [SKIP][319] ([i915#3361]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: [SKIP][320] ([i915#9673] / [i915#9732]) -> [SKIP][321] ([i915#9732]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-10/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2: [SKIP][322] ([i915#9732]) -> [SKIP][323] ([i915#9673] / [i915#9732]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7761/shard-dg2-5/igt@kms_psr@fbc-psr2-primary-render.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/shard-dg2-11/igt@kms_psr@fbc-psr2-primary-render.html [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7761 -> IGTPW_10833 CI-20190529: 20190529 CI_DRM_14429: 96e47e3f3a5952e104d56352872becdc0048d26e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10833: 10833 IGT_7761: 67af6998a7e0467a7a0718cbbfe05a9fd383206f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10833/index.html [-- Attachment #2: Type: text/html, Size: 106712 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem ` (6 preceding siblings ...) 2024-03-14 22:00 ` ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame (rev2) Patchwork @ 2024-03-15 8:42 ` Ville Syrjälä 7 siblings, 0 replies; 9+ messages in thread From: Ville Syrjälä @ 2024-03-15 8:42 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev, Vandita Kulkarni On Thu, Mar 14, 2024 at 11:24:37AM +0530, Bhanuprakash Modem wrote: > As XE driver taking longer time for pinning, re-calculate to > reduce the expected min flips per frame (by assuming the min > pinning time as 1.2 ms). Otherwise test will fail, since we > can't achieve those many flips per frame. MIN_FLIPS_PER_FRAME==5. If xe can't even achieve that low number then it's very broken. > > Cc: Vandita Kulkarni <vandita.kulkarni@intel.com> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_async_flips.c | 19 ++++++++++++++++--- > 1 file changed, 16 insertions(+), 3 deletions(-) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index 2895168f7..ec2d86f4e 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -238,6 +238,19 @@ static void test_async_flip(data_t *data) > int ret, frame; > long long int fps; > struct timeval start, end, diff; > + int min_flips_per_frame; > + > + /* > + * FIXME: As pinning is taking moretime in XE, recalculate min frames > + * per frame (by considering the pinning time as 1.2 ms) > + */ > + min_flips_per_frame = 1000 / (data->refresh_rate * 1.2); > + igt_require(min_flips_per_frame); > + > + if (min_flips_per_frame > MIN_FLIPS_PER_FRAME) > + min_flips_per_frame = MIN_FLIPS_PER_FRAME; > + > + igt_info("Expected min flips per frame: %d\n", min_flips_per_frame); > > igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); > > @@ -296,10 +309,10 @@ static void test_async_flip(data_t *data) > timersub(&end, &start, &diff); > > if (data->alternate_sync_async) { > - igt_assert_f(data->flip_interval < 1000.0 / (data->refresh_rate * MIN_FLIPS_PER_FRAME), > + igt_assert_f(data->flip_interval < 1000.0 / (data->refresh_rate * min_flips_per_frame), > "Flip interval not significantly smaller than vblank interval\n" > "Flip interval: %lfms, Refresh Rate = %dHz, Threshold = %d\n", > - data->flip_interval, data->refresh_rate, MIN_FLIPS_PER_FRAME); > + data->flip_interval, data->refresh_rate, min_flips_per_frame); > } > > frame++; > @@ -307,7 +320,7 @@ static void test_async_flip(data_t *data) > > if (!data->alternate_sync_async) { > fps = frame * 1000 / RUN_TIME; > - igt_assert_f((fps / 1000) > (data->refresh_rate * MIN_FLIPS_PER_FRAME), > + igt_assert_f((fps / 1000) > (data->refresh_rate * min_flips_per_frame), > "FPS should be significantly higher than the refresh rate\n"); > } > } > -- > 2.43.2 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-03-15 8:43 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-03-14 5:54 [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Bhanuprakash Modem 2024-03-14 6:34 ` [i-g-t V2] " Bhanuprakash Modem 2024-03-14 7:05 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-03-14 7:08 ` ✓ CI.xeBAT: " Patchwork 2024-03-14 7:26 ` ✓ CI.xeBAT: success for tests/kms_async_flips: Re-calculate min flips per frame (rev2) Patchwork 2024-03-14 7:44 ` ✓ Fi.CI.BAT: " Patchwork 2024-03-14 20:50 ` ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame Patchwork 2024-03-14 22:00 ` ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Re-calculate min flips per frame (rev2) Patchwork 2024-03-15 8:42 ` [PATCH i-g-t] tests/kms_async_flips: Re-calculate min flips per frame Ville Syrjälä
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox