* [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test
@ 2024-09-30 12:04 Santhosh Reddy Guddati
2024-09-30 12:04 ` [PATCH i-g-t v6 1/1] " Santhosh Reddy Guddati
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Santhosh Reddy Guddati @ 2024-09-30 12:04 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Santhosh Reddy Guddati
This patch introduces a new subtest to validate async flips during
suspend and resume cycle.
Santhosh Reddy Guddati (1):
tests/kms_async_flips: Async flips suspend resume test
tests/kms_async_flips.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v6 1/1] tests/kms_async_flips: Async flips suspend resume test 2024-09-30 12:04 [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test Santhosh Reddy Guddati @ 2024-09-30 12:04 ` Santhosh Reddy Guddati 2024-10-03 4:39 ` Karthik B S 2024-09-30 14:01 ` ✓ Fi.CI.BAT: success for tests/kms_async_flips: Async flips suspend resume test (rev6) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Santhosh Reddy Guddati @ 2024-09-30 12:04 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, Santhosh Reddy Guddati Test functionality of async flips with suspend and resume v2: Re-use existing function and use s/r API (Swathi) v6: Remove HAX patch Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/kms_async_flips.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 5b70c4033..08510e70d 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -66,6 +66,9 @@ * * SUBTEST: invalid-async-flip * Description: Negative case to verify if changes in fb are rejected from kernel as expected + * + * SUBTEST: async-flip-suspend-resume + * Description: Verify the async flip functionality with suspend and resume cycle */ #define CURSOR_POS 128 @@ -99,6 +102,7 @@ typedef struct { bool flip_pending; enum pipe pipe; bool alternate_sync_async; + bool suspend_resume; bool allow_fail; struct buf_ops *bops; } data_t; @@ -260,6 +264,7 @@ static void test_async_flip(data_t *data) int ret, frame; long long int fps; struct timeval start, end, diff; + int suspend_time = 1; igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); @@ -312,6 +317,10 @@ static void test_async_flip(data_t *data) data->flip_interval, data->refresh_rate, MIN_FLIPS_PER_FRAME); } + if (data->suspend_resume && diff.tv_sec == suspend_time) { + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); + suspend_time = 0; + } frame++; } while (diff.tv_sec < RUN_TIME); @@ -750,6 +759,12 @@ igt_main run_test(&data, test_crc); } + igt_describe("Verify the async flip functionality after suspend and resume cycle"); + igt_subtest_with_dynamic("async-flip-suspend-resume") { + data.suspend_resume = true; + run_test(&data, test_async_flip); + } + igt_fixture { for (i = 0; i < NUM_FBS; i++) igt_remove_fb(data.drm_fd, &data.bufs[i]); -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v6 1/1] tests/kms_async_flips: Async flips suspend resume test 2024-09-30 12:04 ` [PATCH i-g-t v6 1/1] " Santhosh Reddy Guddati @ 2024-10-03 4:39 ` Karthik B S 0 siblings, 0 replies; 7+ messages in thread From: Karthik B S @ 2024-10-03 4:39 UTC (permalink / raw) To: Santhosh Reddy Guddati, igt-dev Hi Santhosh, On 9/30/2024 5:34 PM, Santhosh Reddy Guddati wrote: > Test functionality of async flips with suspend and resume > > v2: Re-use existing function and use s/r API (Swathi) > v6: Remove HAX patch Please remove this v6 comment as it is from a separate patch. > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/kms_async_flips.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index 5b70c4033..08510e70d 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -66,6 +66,9 @@ > * > * SUBTEST: invalid-async-flip > * Description: Negative case to verify if changes in fb are rejected from kernel as expected > + * > + * SUBTEST: async-flip-suspend-resume > + * Description: Verify the async flip functionality with suspend and resume cycle > */ > > #define CURSOR_POS 128 > @@ -99,6 +102,7 @@ typedef struct { > bool flip_pending; > enum pipe pipe; > bool alternate_sync_async; > + bool suspend_resume; > bool allow_fail; > struct buf_ops *bops; > } data_t; > @@ -260,6 +264,7 @@ static void test_async_flip(data_t *data) > int ret, frame; > long long int fps; > struct timeval start, end, diff; > + int suspend_time = 1; > > igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); > > @@ -312,6 +317,10 @@ static void test_async_flip(data_t *data) > data->flip_interval, data->refresh_rate, MIN_FLIPS_PER_FRAME); > } > > + if (data->suspend_resume && diff.tv_sec == suspend_time) { > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + suspend_time = 0; > + } > frame++; > } while (diff.tv_sec < RUN_TIME); > > @@ -750,6 +759,12 @@ igt_main > run_test(&data, test_crc); > } > > + igt_describe("Verify the async flip functionality after suspend and resume cycle"); > + igt_subtest_with_dynamic("async-flip-suspend-resume") { > + data.suspend_resume = true; The suspend_resume variable needs to be reset somewhere. May be we would do it once inside the 'if (suspend_resume)' itself. With this fixed, Reviewed-by: Karthik B S <karthik.b.s@intel.com> Thanks, Karthik.B.S > + run_test(&data, test_async_flip); > + } > + > igt_fixture { > for (i = 0; i < NUM_FBS; i++) > igt_remove_fb(data.drm_fd, &data.bufs[i]); ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_async_flips: Async flips suspend resume test (rev6) 2024-09-30 12:04 [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test Santhosh Reddy Guddati 2024-09-30 12:04 ` [PATCH i-g-t v6 1/1] " Santhosh Reddy Guddati @ 2024-09-30 14:01 ` Patchwork 2024-09-30 14:13 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-09-30 14:01 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6847 bytes --] == Series Details == Series: tests/kms_async_flips: Async flips suspend resume test (rev6) URL : https://patchwork.freedesktop.org/series/138302/ State : success == Summary == CI Bug Log - changes from IGT_8041 -> IGTPW_11835 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_11835 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11835, 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_11835/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11835: ### IGT changes ### #### Warnings #### * igt@fbdev@eof: - bat-arlh-2: [SKIP][1] ([i915#11345]) -> [SKIP][2] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arlh-2/igt@fbdev@eof.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arlh-2/igt@fbdev@eof.html Known issues ------------ Here are the changes found in IGTPW_11835 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@reload: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621] / [i915#180] / [i915#1982]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/fi-kbl-7567u/igt@i915_module_load@reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][5] -> [ABORT][6] ([i915#12216]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-mtlp-8/igt@i915_selftest@live.html - bat-arlh-2: [PASS][7] -> [ABORT][8] ([i915#12133]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arlh-2/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][9] -> [DMESG-WARN][10] ([i915#11621]) +81 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [PASS][11] -> [ABORT][12] ([i915#12061]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arlh-2/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arlh-2/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [PASS][13] -> [ABORT][14] ([i915#12061] / [i915#12216]) +1 other test abort [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_busy@basic@flip: - fi-kbl-7567u: [PASS][15] -> [DMESG-WARN][16] ([i915#180]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/fi-kbl-7567u/igt@kms_busy@basic@flip.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/fi-kbl-7567u/igt@kms_busy@basic@flip.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][17] -> [DMESG-WARN][18] ([i915#11621] / [i915#180]) +50 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@i915_selftest@live: - {bat-arlh-3}: [ABORT][19] ([i915#12133]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arlh-3/igt@i915_selftest@live.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - {bat-arlh-3}: [ABORT][21] ([i915#12061]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arlh-3/igt@i915_selftest@live@workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][23] ([i915#10341] / [i915#12133]) -> [ABORT][24] ([i915#12061] / [i915#12133]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arls-5/igt@i915_selftest@live.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][25] ([i915#10341] / [i915#11637]) -> [ABORT][26] ([i915#12061]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/bat-arls-5/igt@i915_selftest@live@workarounds.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/bat-arls-5/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8041 -> IGTPW_11835 CI-20190529: 20190529 CI_DRM_15458: 8ffb4ffcd9c475e88792494601785dc5d617c5f1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11835: 50f1225b6c38afbc93a1ac70a3443d70eb4ef07b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8041: 007824783b6bab6b45508cece05df96d295cadd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/index.html [-- Attachment #2: Type: text/html, Size: 8704 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_async_flips: Async flips suspend resume test (rev6) 2024-09-30 12:04 [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test Santhosh Reddy Guddati 2024-09-30 12:04 ` [PATCH i-g-t v6 1/1] " Santhosh Reddy Guddati 2024-09-30 14:01 ` ✓ Fi.CI.BAT: success for tests/kms_async_flips: Async flips suspend resume test (rev6) Patchwork @ 2024-09-30 14:13 ` Patchwork 2024-09-30 17:23 ` ✗ CI.xeFULL: failure " Patchwork 2024-09-30 20:58 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-09-30 14:13 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1694 bytes --] == Series Details == Series: tests/kms_async_flips: Async flips suspend resume test (rev6) URL : https://patchwork.freedesktop.org/series/138302/ State : success == Summary == CI Bug Log - changes from XEIGT_8041_BAT -> XEIGTPW_11835_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11835_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - {bat-bmg-2}: [INCOMPLETE][1] ([Intel XE#2874]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 Build changes ------------- * IGT: IGT_8041 -> IGTPW_11835 IGTPW_11835: 50f1225b6c38afbc93a1ac70a3443d70eb4ef07b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8041: 007824783b6bab6b45508cece05df96d295cadd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1990-8ffb4ffcd9c475e88792494601785dc5d617c5f1: 8ffb4ffcd9c475e88792494601785dc5d617c5f1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/index.html [-- Attachment #2: Type: text/html, Size: 2266 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_async_flips: Async flips suspend resume test (rev6) 2024-09-30 12:04 [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test Santhosh Reddy Guddati ` (2 preceding siblings ...) 2024-09-30 14:13 ` ✓ CI.xeBAT: " Patchwork @ 2024-09-30 17:23 ` Patchwork 2024-09-30 20:58 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-09-30 17:23 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 44738 bytes --] == Series Details == Series: tests/kms_async_flips: Async flips suspend resume test (rev6) URL : https://patchwork.freedesktop.org/series/138302/ State : failure == Summary == CI Bug Log - changes from XEIGT_8041_full -> XEIGTPW_11835_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11835_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11835_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11835_full: ### IGT changes ### #### Possible regressions #### * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][1] +7 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-434/igt@kms_feature_discovery@psr1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][4] +4 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@xe_exec_sip@invalidinstr-walker-enabled: - shard-lnl: [PASS][6] -> [FAIL][7] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-8/igt@xe_exec_sip@invalidinstr-walker-enabled.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@xe_exec_sip@invalidinstr-walker-enabled.html #### Warnings #### * igt@xe_oa@oa-tlb-invalidate: - shard-lnl: [SKIP][8] ([Intel XE#2248]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-2/igt@xe_oa@oa-tlb-invalidate.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_big_joiner@basic: - {shard-bmg}: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-bmg-1/igt@kms_big_joiner@basic.html New tests --------- New tests have been introduced between XEIGT_8041_full and XEIGTPW_11835_full: ### New IGT tests (4) ### * igt@kms_async_flips@async-flip-suspend-resume: - Statuses : 1 pass(s) - Exec time: [17.27] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [5.34] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [5.34] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [5.34] s Known issues ------------ Here are the changes found in XEIGTPW_11835_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-lnl: NOTRUN -> [DMESG-WARN][13] ([Intel XE#1725]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1477]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1512]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +83 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2669]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#1195]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][27] ([Intel XE#1195]) +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1152]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-75: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#306]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +12 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#373]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-463/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#308]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#309]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#323]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#1475]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#701]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#703]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-466/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#886]) +4 other tests fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][45] ([Intel XE#1504]) +1 other test timeout [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1: - shard-lnl: NOTRUN -> [FAIL][46] ([Intel XE#886]) +1 other test fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1401]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#651]) +42 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#651]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#656]) +21 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#658]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#653]) +31 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-lnl: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#2050]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-suspend.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#2340]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2853]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#455]) +16 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-466/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3: - shard-lnl: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#324]) +2 other tests dmesg-warn [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#599]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2763]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2763]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#870]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: NOTRUN -> [FAIL][66] ([Intel XE#1430]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@cursor-dpms: - shard-lnl: [PASS][67] -> [DMESG-FAIL][68] ([Intel XE#1620]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@kms_pm_rpm@cursor-dpms.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1489]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2893]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2850]) +14 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-433/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr-dpms: - shard-lnl: NOTRUN -> [FAIL][73] ([Intel XE#1649]) +9 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1437]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#327]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#1729]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1500]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#899]) +2 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#2443]) +3 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@kms_vrr@flip-basic.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#756]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1091] / [Intel XE#2849]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_evict@evict-beng-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#688]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][85] -> [TIMEOUT][86] ([Intel XE#1473] / [Intel XE#402]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#1600]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][88] ([Intel XE#1473]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1392]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#288]) +30 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_module_load@load: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#378]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@xe_module_load@load.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2541]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-432/igt@xe_oa@polling-small-buf.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2284]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-434/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#584]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-8/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][95] -> [ABORT][96] ([Intel XE#1358] / [Intel XE#1607]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@xe_pm@s4-basic.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-2/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#2280] / [Intel XE#2699]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#944]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-436/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-oa-units: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#944]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@xe_query@multigpu-query-oa-units.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][101] ([Intel XE#1426]) -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [FAIL][103] ([Intel XE#1426]) -> [PASS][104] +1 other test pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-lnl: [FAIL][105] ([Intel XE#1659]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1: - shard-lnl: [INCOMPLETE][107] ([Intel XE#1616]) -> [PASS][108] +1 other test pass [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3: - {shard-bmg}: [DMESG-WARN][109] ([Intel XE#877]) -> [PASS][110] +4 other tests pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-bmg-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-lnl: [FAIL][111] ([Intel XE#2631]) -> [PASS][112] +1 other test pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@kms_flip@absolute-wf_vblank-interruptible.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][113] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4: - shard-dg2-set2: [INCOMPLETE][115] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html * igt@kms_flip@plain-flip-ts-check@b-edp1: - shard-lnl: [FAIL][117] ([Intel XE#886]) -> [PASS][118] +4 other tests pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@b-edp1.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@b-edp1.html * igt@kms_plane@plane-position-covered@pipe-a-plane-4: - shard-lnl: [DMESG-FAIL][119] ([Intel XE#324]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html * igt@kms_plane@plane-position-covered@pipe-b-plane-4: - shard-lnl: [DMESG-WARN][121] ([Intel XE#324]) -> [PASS][122] +3 other tests pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [FAIL][123] -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [INCOMPLETE][125] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@kms_pm_rpm@legacy-planes.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes@plane-68: - shard-lnl: [DMESG-FAIL][127] ([Intel XE#1620]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@kms_pm_rpm@legacy-planes@plane-68.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_pm_rpm@legacy-planes@plane-68.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [SKIP][129] -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vrr@max-min: - shard-lnl: [FAIL][131] ([Intel XE#2443]) -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@kms_vrr@max-min.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@kms_vrr@max-min.html * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][133] -> [PASS][134] +1 other test pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-4/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-3/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm: - shard-lnl: [DMESG-WARN][135] -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html * igt@xe_exec_reset@parallel-gt-reset: - {shard-bmg}: [TIMEOUT][137] ([Intel XE#2105]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_oa@oa-exponents: - shard-lnl: [FAIL][139] ([Intel XE#2723]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-7/igt@xe_oa@oa-exponents.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-1/igt@xe_oa@oa-exponents.html * igt@xe_pm@s2idle-multiple-execs: - shard-lnl: [DMESG-WARN][141] ([Intel XE#1616]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-5/igt@xe_pm@s2idle-multiple-execs.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-2/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s4-multiple-execs: - shard-lnl: [ABORT][143] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-8/igt@xe_pm@s4-multiple-execs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][145] ([Intel XE#958]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: [SKIP][147] -> [SKIP][148] ([Intel XE#1439]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8041/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2631]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2631 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2699 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 Build changes ------------- * IGT: IGT_8041 -> IGTPW_11835 IGTPW_11835: 50f1225b6c38afbc93a1ac70a3443d70eb4ef07b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8041: 007824783b6bab6b45508cece05df96d295cadd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1990-8ffb4ffcd9c475e88792494601785dc5d617c5f1: 8ffb4ffcd9c475e88792494601785dc5d617c5f1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11835/index.html [-- Attachment #2: Type: text/html, Size: 47068 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_async_flips: Async flips suspend resume test (rev6) 2024-09-30 12:04 [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test Santhosh Reddy Guddati ` (3 preceding siblings ...) 2024-09-30 17:23 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-09-30 20:58 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-09-30 20:58 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100281 bytes --] == Series Details == Series: tests/kms_async_flips: Async flips suspend resume test (rev6) URL : https://patchwork.freedesktop.org/series/138302/ State : failure == Summary == CI Bug Log - changes from IGT_8041_full -> IGTPW_11835_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11835_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11835_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_11835/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11835_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@kms_async_flips@test-cursor.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg1: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-16/igt@kms_vblank@ts-continuation-dpms-suspend.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-14/igt@kms_vblank@ts-continuation-dpms-suspend.html New tests --------- New tests have been introduced between IGT_8041_full and IGTPW_11835_full: ### New IGT tests (19) ### * igt@kms_async_flips@async-flip-suspend-resume: - Statuses : 5 pass(s) - Exec time: [3.88, 34.99] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [2.94] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [1.87, 2.48] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.23] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [9.01] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [2.79] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [1.79, 2.13] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [2.99] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [8.42] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [2.81] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.14] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [8.44] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [2.79] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.10] s * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [8.43] s * igt@kms_flip_event_leak@basic@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.23] s * igt@kms_flip_event_leak@basic@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_lease@lessee-list@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@lessee-list@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in IGTPW_11835_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@most-busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +17 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@fbdev@eof: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#2582]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@fbdev@eof.html * igt@gem_busy@close-race: - shard-dg2: NOTRUN -> [FAIL][9] ([i915#12297]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@gem_busy@close-race.html - shard-rkl: NOTRUN -> [FAIL][10] ([i915#12297]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@gem_busy@close-race.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-16/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: NOTRUN -> [FAIL][16] ([i915#12027]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-17/igt@gem_eio@unwedge-stress.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_eio@wait-wedge-10ms: - shard-dg1: [PASS][26] -> [DMESG-WARN][27] ([i915#4391] / [i915#4423]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-16/igt@gem_eio@wait-wedge-10ms.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@gem_eio@wait-wedge-10ms.html * igt@gem_exec_balancer@hog: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][31] ([i915#6117]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@gem_exec_balancer@sliced.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@gem_exec_balancer@sliced.html * igt@gem_exec_big@single: - shard-tglu: [PASS][34] -> [ABORT][35] ([i915#11713]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-tglu-5/igt@gem_exec_big@single.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-7/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [PASS][37] -> [TIMEOUT][38] ([i915#3778] / [i915#7016]) +1 other test timeout [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-5/igt@gem_exec_endless@dispatch@bcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2846]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][44] ([i915#2842]) +7 other tests fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-tglu: [PASS][45] -> [FAIL][46] ([i915#2842]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-tglu-4/igt@gem_exec_fair@basic-pace-share.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-16/igt@gem_exec_reloc@basic-concurrent0.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][52] ([i915#12296]) +7 other tests fail [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-7/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#2190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@gem_lmem_swapping@smem-oom.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@gem_lmem_swapping@smem-oom.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@uncached: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@gem_pread@uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-13/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4270]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4885]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#3323]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282] / [i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@gem_userptr_blits@readonly-unsync.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][98] -> [ABORT][99] ([i915#9820]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#7178]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#8399]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][103] ([i915#2681]) +6 other tests warn [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#8437]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#6188]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#5723]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-snb: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb7/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#7707]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-1/igt@intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#7707]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-3/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4215]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#8709]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][115] ([i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#5286]) +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][122] +17 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +9 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190] / [i915#9197]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10656]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6095]) +49 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +79 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +173 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +95 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/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-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][137] ([i915#12313]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +136 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7213] / [i915#9010]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7213]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +14 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7828]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_chamelium_audio@hdmi-audio.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][145] +22 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3555]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#9979]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#7118] / [i915#9424]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9433]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-13/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8063] / [i915#9433]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8814]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#11453]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11453]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#11453]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8814]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5354]) +24 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9809]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-4/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][164] ([i915#4213]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#9067]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#4103]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#9833]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-13/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3804]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3804]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8812]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#8812]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840] / [i915#9053]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3840] / [i915#9053]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3840] / [i915#9053]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3840] / [i915#9053]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3469]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#1839]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#1839]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#9337]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#4423]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637]) +8 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3637]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [PASS][192] -> [FAIL][193] ([i915#2122]) +9 other tests fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-dg2: [PASS][194] -> [FAIL][195] ([i915#2122]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-1/igt@kms_flip@blocking-wf_vblank.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_flip@blocking-wf_vblank.html - shard-rkl: [PASS][196] -> [FAIL][197] ([i915#11961] / [i915#2122]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-rkl-6/igt@kms_flip@blocking-wf_vblank.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][198] ([i915#2122]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][199] ([i915#2122]) +1 other test fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-tglu: [PASS][200] -> [FAIL][201] ([i915#2122]) +6 other tests fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8381]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4: - shard-dg1: NOTRUN -> [DMESG-WARN][203] ([i915#4423]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][204] ([i915#2122]) +2 other tests fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check: - shard-mtlp: [PASS][205] -> [FAIL][206] ([i915#11989] / [i915#2122]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-mtlp-8/igt@kms_flip@wf_vblank-ts-check.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-mtlp: [PASS][207] -> [FAIL][208] ([i915#2122]) +5 other tests fail [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-mtlp-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555] / [i915#5190]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672] / [i915#3555]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2672]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [PASS][222] -> [SKIP][223] ([i915#5354]) +5 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-snb: [PASS][224] -> [SKIP][225] +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3458]) +11 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] +27 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][228] +21 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#10055]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#10055]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#9766]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][232] +124 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#8708]) +12 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#8708]) +25 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +18 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8708]) +11 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1825]) +28 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#3023]) +19 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#3458]) +6 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4816]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][243] ([i915#4816]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][244] ([i915#4070] / [i915#4816]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#8825]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#9423]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#12247]) +11 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#12247]) +27 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#12247]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#8152] / [i915#9423]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#8152]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#12247]) +10 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-snb: NOTRUN -> [SKIP][255] +97 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb7/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [PASS][257] -> [SKIP][258] ([i915#12247] / [i915#8152] / [i915#9423]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#12247]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#12247] / [i915#8152]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#3555]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12247]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#5354]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#5354]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][267] ([i915#9812]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [PASS][268] -> [SKIP][269] ([i915#9293]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@kms_pm_dc@dc5-dpms-negative.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#10139]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-4/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9685]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#9685]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-13/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][273] -> [SKIP][274] ([i915#4281]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9340]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#9340]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [FAIL][277] ([i915#12171]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][278] ([i915#9301]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#8430]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#9519]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#9519]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#4077]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9519]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#9519]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][285] -> [SKIP][286] ([i915#9519]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#9519]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#6524]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-6/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-legacy: - shard-dg2: [PASS][290] -> [SKIP][291] ([i915#11521]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-8/igt@kms_properties@plane-properties-legacy.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#11520]) +12 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][293] ([i915#11520]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#9808]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12316]) +6 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#11520]) +7 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#11520]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-19/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#11520]) +8 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#9683]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-dpms: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#9688]) +12 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#9732]) +31 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +15 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +18 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +7 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-13/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9685]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9685]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#11131]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#5289]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#5289]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#11131] / [i915#4235] / [i915#5190]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#5289]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][312] ([i915#5289]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#4235]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555]) +9 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][315] ([i915#12231]) +1 other test abort [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html * igt@kms_sequence@queue-idle: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#9197]) +11 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_sequence@queue-idle.html * igt@kms_universal_plane@cursor-fb-leak: - shard-snb: [PASS][317] -> [FAIL][318] ([i915#9196]) +1 other test fail [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb2/igt@kms_universal_plane@cursor-fb-leak.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb2/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vblank@ts-continuation-idle-hang: - shard-dg2: [PASS][319] -> [SKIP][320] ([i915#9197]) +21 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-1/igt@kms_vblank@ts-continuation-idle-hang.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_vblank@ts-continuation-idle-hang.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#11920]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#9906]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#9906]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][324] ([i915#9906]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#9906]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#8808] / [i915#9906]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#2437]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#2437] / [i915#9412]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][329] ([i915#7484]) +1 other test fail [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@perf@non-zero-reason.html * igt@perf_pmu@cpu-hotplug: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#8850]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#8516]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle@vcs0: - shard-dg2: [PASS][332] -> [FAIL][333] ([i915#4349]) +5 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-8/igt@perf_pmu@render-node-busy-idle@vcs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@perf_pmu@render-node-busy-idle@vcs0.html - shard-dg1: [PASS][334] -> [FAIL][335] ([i915#4349]) +3 other tests fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-16/igt@perf_pmu@render-node-busy-idle@vcs0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs0.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-mtlp: [PASS][336] -> [FAIL][337] ([i915#4349]) +5 other tests fail [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@vcs1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#3708] / [i915#4077]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@prime_vgem@basic-gtt.html - shard-dg2: NOTRUN -> [SKIP][339] ([i915#3708] / [i915#4077]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#3291] / [i915#3708]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#3708]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-16/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#10216] / [i915#3708]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-5/igt@prime_vgem@basic-write.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#9917]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#9917]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html - shard-tglu: NOTRUN -> [SKIP][345] ([i915#9917]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-tglu-4/igt@sriov_basic@bind-unbind-vf.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#9917]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-7/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#9917]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][348] ([i915#9781]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@fbdev@pan: - shard-dg2: [SKIP][349] ([i915#2582]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@fbdev@pan.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-7/igt@fbdev@pan.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg1: [INCOMPLETE][351] -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-12/igt@gem_ctx_isolation@preservation-s3.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-15/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][353] ([i915#5784]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-6/igt@gem_eio@reset-stress.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@nop: - shard-mtlp: [DMESG-WARN][355] -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-mtlp-3/igt@gem_exec_balancer@nop.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-8/igt@gem_exec_balancer@nop.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][357] ([i915#2842]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][359] ([i915#7975] / [i915#8213]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_selftest@mock@sanitycheck: - shard-snb: [ABORT][361] ([i915#11703]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb7/igt@i915_selftest@mock@sanitycheck.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb7/igt@i915_selftest@mock@sanitycheck.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][363] ([i915#5138]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cursor_crc@cursor-random-256x256: - shard-dg2: [SKIP][365] ([i915#9197]) -> [PASS][366] +22 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_cursor_crc@cursor-random-256x256.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-1/igt@kms_cursor_crc@cursor-random-256x256.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-snb: [FAIL][367] ([i915#10826]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb2/igt@kms_flip@basic-flip-vs-wf_vblank.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: [FAIL][369] ([i915#2122]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1: - shard-snb: [FAIL][371] ([i915#2122]) -> [PASS][372] +6 other tests pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-snb: [SKIP][373] -> [PASS][374] +8 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [SKIP][375] ([i915#5354]) -> [PASS][376] +6 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [SKIP][377] ([i915#3555] / [i915#8228]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html * igt@kms_invalid_mode@zero-hdisplay: - shard-dg2: [SKIP][379] ([i915#3555]) -> [PASS][380] +2 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_invalid_mode@zero-hdisplay.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: [SKIP][381] ([i915#8825]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [SKIP][383] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-dg2: [SKIP][385] ([i915#8152] / [i915#9423]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d: - shard-dg2: [SKIP][387] ([i915#8152]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [SKIP][389] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a: - shard-dg2: [SKIP][391] ([i915#12247]) -> [PASS][392] +8 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d: - shard-dg2: [SKIP][393] ([i915#12247] / [i915#8152]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][395] ([i915#9519]) -> [PASS][396] +2 other tests pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: [SKIP][397] ([i915#3547]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-mtlp: [FAIL][399] -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-mtlp-6/igt@kms_psr@psr2-cursor-blt@edp-1.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-mtlp-1/igt@kms_psr@psr2-cursor-blt@edp-1.html #### Warnings #### * igt@i915_selftest@mock: - shard-snb: [ABORT][401] -> [DMESG-WARN][402] ([i915#9311]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb7/igt@i915_selftest@mock.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb7/igt@i915_selftest@mock.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: [SKIP][403] ([i915#6228]) -> [SKIP][404] ([i915#9197]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2: [SKIP][405] -> [SKIP][406] ([i915#9197]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][407] ([i915#9197]) -> [SKIP][408] +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: [SKIP][409] ([i915#5190]) -> [SKIP][410] ([i915#5190] / [i915#9197]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][411] ([i915#5190] / [i915#9197]) -> [SKIP][412] ([i915#4538] / [i915#5190]) +5 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: [SKIP][413] ([i915#4538] / [i915#5190]) -> [SKIP][414] ([i915#5190] / [i915#9197]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][415] ([i915#9197]) -> [SKIP][416] ([i915#10307] / [i915#6095]) +6 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: [SKIP][417] ([i915#9197]) -> [SKIP][418] ([i915#12313]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs: - shard-dg2: [SKIP][419] ([i915#10307] / [i915#6095]) -> [SKIP][420] ([i915#9197]) +3 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-8/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg1: [SKIP][421] ([i915#12313]) -> [SKIP][422] ([i915#12313] / [i915#4423]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg2: [SKIP][423] ([i915#9197]) -> [SKIP][424] ([i915#4087]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_cdclk@plane-scaling.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-8/igt@kms_cdclk@plane-scaling.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: [SKIP][425] ([i915#9197]) -> [SKIP][426] ([i915#3299]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [SKIP][427] ([i915#9424]) -> [SKIP][428] ([i915#9197]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-7/igt@kms_content_protection@lic-type-0.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][429] -> [INCOMPLETE][430] ([i915#8816]) +1 other test incomplete [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-snb7/igt@kms_content_protection@srm.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-snb6/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][431] ([i915#9197]) -> [SKIP][432] ([i915#7118] / [i915#9424]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-2/igt@kms_content_protection@type1.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: [SKIP][433] ([i915#11453]) -> [SKIP][434] ([i915#11453] / [i915#3359]) +2 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8041/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP] == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11835/index.html [-- Attachment #2: Type: text/html, Size: 109721 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-03 4:39 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-30 12:04 [PATCH i-g-t v6 0/1] tests/kms_async_flips: Async flips suspend resume test Santhosh Reddy Guddati 2024-09-30 12:04 ` [PATCH i-g-t v6 1/1] " Santhosh Reddy Guddati 2024-10-03 4:39 ` Karthik B S 2024-09-30 14:01 ` ✓ Fi.CI.BAT: success for tests/kms_async_flips: Async flips suspend resume test (rev6) Patchwork 2024-09-30 14:13 ` ✓ CI.xeBAT: " Patchwork 2024-09-30 17:23 ` ✗ CI.xeFULL: failure " Patchwork 2024-09-30 20:58 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox