* [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa
@ 2024-10-01 7:34 Santhosh Reddy Guddati
2024-10-01 7:34 ` [PATCH i-g-t v3 1/1] " Santhosh Reddy Guddati
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-01 7:34 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Santhosh Reddy Guddati
Add a subtest to validate switching from ultra joiner to big joiner
and vice-versa.
Santhosh Reddy Guddati (1):
tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa
tests/intel/kms_joiner.c | 53 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v3 1/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa 2024-10-01 7:34 [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati @ 2024-10-01 7:34 ` Santhosh Reddy Guddati 2024-10-03 4:23 ` Karthik B S 2024-10-01 10:37 ` ✓ CI.xeBAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Santhosh Reddy Guddati @ 2024-10-01 7:34 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Santhosh Reddy Guddati Add a subtest to validate switching from ultra joiner to big joiner and vice-versa. v2: Add new subtests for switching without force joiner (Karthik) v3: start with uj to bj switch, if not available switch to force mode Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/intel/kms_joiner.c | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 508e82ce3..7c7436b9a 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -71,6 +71,9 @@ * SUBTEST: invalid-modeset-force-ultra-joiner * Description: Verify if the modeset on the other pipes are rejected when * the pipe A is active with force ultra joiner modeset. + * + * SUBTEST: switch-modeset-big-joiner-ultra-joiner + * Description: Verify modeset switch between ultra joiner and big joiner. */ IGT_TEST_DESCRIPTION("Test joiner / force joiner"); @@ -507,6 +510,56 @@ igt_main test_ultra_joiner(&data, false, false, false); } + igt_describe("Verify modeset switch between joiner and ultra joiner"); + igt_subtest_with_dynamic("switch-modeset-big-joiner-ultra-joiner") { + igt_require_f(data.n_pipes > 1, + "Minimum 2 pipes required\n"); + + igt_dynamic_f("ultra_joiner_to_big_joiner") { + if (data.ultra_joiner_output_count > 0) { + test_ultra_joiner(&data, false, false, false); + } else { + igt_require_f(force_joiner_supported && + data.non_ultra_joiner_output_count > 0, + "Force joiner not supported on this platform or none of the connected output supports it\n"); + enable_force_joiner_on_all_non_ultra_joiner_outputs(&data); + test_ultra_joiner(&data, false, false, true); + } + if (data.big_joiner_output_count > 0) { + test_single_joiner(&data, data.big_joiner_output_count, false); + } else { + igt_require_f(force_joiner_supported && + data.non_big_joiner_output_count > 0, + "Force joiner not supported on this platform or none of the connected outputs support it\n"); + enable_force_joiner_on_all_non_big_joiner_outputs(&data); + test_single_joiner(&data, data.non_big_joiner_output_count, true); + } + igt_reset_connectors(); + } + + igt_dynamic_f("big_joiner_to_ultra_joiner") { + if (data.big_joiner_output_count > 0) { + test_single_joiner(&data, data.big_joiner_output_count, false); + } else { + igt_require_f(force_joiner_supported && + data.non_big_joiner_output_count > 0, + "Force joiner not supported on this platform or none of the connected output supports it\n"); + enable_force_joiner_on_all_non_big_joiner_outputs(&data); + test_single_joiner(&data, data.non_big_joiner_output_count, true); + } + if (data.ultra_joiner_output_count > 0) { + test_ultra_joiner(&data, false, false, false); + } else { + igt_require_f(force_joiner_supported && + data.non_ultra_joiner_output_count > 0, + "Force joiner not supported on this platform or none of the connected output supports it\n"); + enable_force_joiner_on_all_non_ultra_joiner_outputs(&data); + test_ultra_joiner(&data, false, false, true); + } + igt_reset_connectors(); + } + } + igt_describe("Verify if the modeset on the adjoining pipe is rejected " "when the pipe is active with a big joiner modeset"); igt_subtest_with_dynamic("invalid-modeset-big-joiner") { -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v3 1/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa 2024-10-01 7:34 ` [PATCH i-g-t v3 1/1] " Santhosh Reddy Guddati @ 2024-10-03 4:23 ` Karthik B S 0 siblings, 0 replies; 7+ messages in thread From: Karthik B S @ 2024-10-03 4:23 UTC (permalink / raw) To: Santhosh Reddy Guddati, igt-dev; +Cc: swati2.sharma Hi Santhosh, On 10/1/2024 1:04 PM, Santhosh Reddy Guddati wrote: > Add a subtest to validate switching from ultra joiner to big joiner > and vice-versa. > > v2: Add new subtests for switching without force joiner (Karthik) > v3: start with uj to bj switch, if not available switch to force mode > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/intel/kms_joiner.c | 53 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 53 insertions(+) > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c > index 508e82ce3..7c7436b9a 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -71,6 +71,9 @@ > * SUBTEST: invalid-modeset-force-ultra-joiner > * Description: Verify if the modeset on the other pipes are rejected when > * the pipe A is active with force ultra joiner modeset. > + * > + * SUBTEST: switch-modeset-big-joiner-ultra-joiner > + * Description: Verify modeset switch between ultra joiner and big joiner. > */ > IGT_TEST_DESCRIPTION("Test joiner / force joiner"); > > @@ -507,6 +510,56 @@ igt_main > test_ultra_joiner(&data, false, false, false); > } > > + igt_describe("Verify modeset switch between joiner and ultra joiner"); > + igt_subtest_with_dynamic("switch-modeset-big-joiner-ultra-joiner") { > + igt_require_f(data.n_pipes > 1, > + "Minimum 2 pipes required\n"); We need four pipes to support ultra joiner. So we can skip the test if we don't have 4 pipes. Also, I would suggest to add the checks to verify if we're able to support both big and ultra joiner before the start of the dynamic subtests. If either one is not supported, then just skip the subtest from here itself rather than starting the dynamic subtest and skipping from there. Thanks, Karthik.B.S > + > + igt_dynamic_f("ultra_joiner_to_big_joiner") { > + if (data.ultra_joiner_output_count > 0) { > + test_ultra_joiner(&data, false, false, false); > + } else { > + igt_require_f(force_joiner_supported && > + data.non_ultra_joiner_output_count > 0, > + "Force joiner not supported on this platform or none of the connected output supports it\n"); > + enable_force_joiner_on_all_non_ultra_joiner_outputs(&data); > + test_ultra_joiner(&data, false, false, true); > + } > + if (data.big_joiner_output_count > 0) { > + test_single_joiner(&data, data.big_joiner_output_count, false); > + } else { > + igt_require_f(force_joiner_supported && > + data.non_big_joiner_output_count > 0, > + "Force joiner not supported on this platform or none of the connected outputs support it\n"); > + enable_force_joiner_on_all_non_big_joiner_outputs(&data); > + test_single_joiner(&data, data.non_big_joiner_output_count, true); > + } > + igt_reset_connectors(); > + } > + > + igt_dynamic_f("big_joiner_to_ultra_joiner") { > + if (data.big_joiner_output_count > 0) { > + test_single_joiner(&data, data.big_joiner_output_count, false); > + } else { > + igt_require_f(force_joiner_supported && > + data.non_big_joiner_output_count > 0, > + "Force joiner not supported on this platform or none of the connected output supports it\n"); > + enable_force_joiner_on_all_non_big_joiner_outputs(&data); > + test_single_joiner(&data, data.non_big_joiner_output_count, true); > + } > + if (data.ultra_joiner_output_count > 0) { > + test_ultra_joiner(&data, false, false, false); > + } else { > + igt_require_f(force_joiner_supported && > + data.non_ultra_joiner_output_count > 0, > + "Force joiner not supported on this platform or none of the connected output supports it\n"); > + enable_force_joiner_on_all_non_ultra_joiner_outputs(&data); > + test_ultra_joiner(&data, false, false, true); > + } > + igt_reset_connectors(); > + } > + } > + > igt_describe("Verify if the modeset on the adjoining pipe is rejected " > "when the pipe is active with a big joiner modeset"); > igt_subtest_with_dynamic("invalid-modeset-big-joiner") { ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) 2024-10-01 7:34 [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati 2024-10-01 7:34 ` [PATCH i-g-t v3 1/1] " Santhosh Reddy Guddati @ 2024-10-01 10:37 ` Patchwork 2024-10-01 10:44 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-01 10:37 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3313 bytes --] == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) URL : https://patchwork.freedesktop.org/series/138525/ State : success == Summary == CI Bug Log - changes from XEIGT_8046_BAT -> XEIGTPW_11849_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11849_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#2871]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][3] -> [SKIP][4] ([Intel XE#455]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-adlp-7: [PASS][5] -> [DMESG-FAIL][6] ([Intel XE#2871]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [PASS][7] -> [INCOMPLETE][8] ([Intel XE#2874]) +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Possible fixes #### * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - bat-lnl-1: [FAIL][9] ([Intel XE#2754]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8046 -> IGTPW_11849 * Linux: xe-1994-c41c6b36db6d8675dfb21e7ab8570a3932608654 -> xe-1995-126b085652ff525948f88b62128ec9d95e00e281 IGTPW_11849: 11849 IGT_8046: 8046 xe-1994-c41c6b36db6d8675dfb21e7ab8570a3932608654: c41c6b36db6d8675dfb21e7ab8570a3932608654 xe-1995-126b085652ff525948f88b62128ec9d95e00e281: 126b085652ff525948f88b62128ec9d95e00e281 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/index.html [-- Attachment #2: Type: text/html, Size: 4070 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) 2024-10-01 7:34 [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati 2024-10-01 7:34 ` [PATCH i-g-t v3 1/1] " Santhosh Reddy Guddati 2024-10-01 10:37 ` ✓ CI.xeBAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) Patchwork @ 2024-10-01 10:44 ` Patchwork 2024-10-01 18:14 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-02 5:43 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-01 10:44 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3395 bytes --] == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) URL : https://patchwork.freedesktop.org/series/138525/ State : success == Summary == CI Bug Log - changes from CI_DRM_15464 -> IGTPW_11849 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/index.html Participating hosts (44 -> 42) ------------------------------ Missing (2): bat-rpls-4 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11849 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-elk-e7500: NOTRUN -> [SKIP][1] +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/fi-elk-e7500/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live: - bat-adlp-6: [PASS][2] -> [INCOMPLETE][3] ([i915#9413]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/bat-adlp-6/igt@i915_selftest@live.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/bat-adlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-adlp-6: [PASS][4] -> [INCOMPLETE][5] ([i915#10886] / [i915#9413]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][6] -> [SKIP][7] ([i915#9197]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-elk-e7500: [ABORT][8] ([i915#11703]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/fi-elk-e7500/igt@core_hotunplug@unbind-rebind.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [ABORT][10] ([i915#12216]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8046 -> IGTPW_11849 CI-20190529: 20190529 CI_DRM_15464: 5e9e9c104744977ec0158c26e33f2b476729fbb6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11849: 11849 IGT_8046: 8046 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/index.html [-- Attachment #2: Type: text/html, Size: 4210 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) 2024-10-01 7:34 [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati ` (2 preceding siblings ...) 2024-10-01 10:44 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-01 18:14 ` Patchwork 2024-10-02 5:43 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-01 18:14 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57758 bytes --] == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) URL : https://patchwork.freedesktop.org/series/138525/ State : failure == Summary == CI Bug Log - changes from XEIGT_8046_full -> XEIGTPW_11849_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11849_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11849_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_11849_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cursor_crc@cursor-suspend@pipe-c-edp-1: - shard-lnl: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-2/igt@kms_cursor_crc@cursor-suspend@pipe-c-edp-1.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_cursor_crc@cursor-suspend@pipe-c-edp-1.html * {igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@big_joiner_to_ultra_joiner} (NEW): - shard-lnl: NOTRUN -> [SKIP][4] +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@big_joiner_to_ultra_joiner.html - {shard-bmg}: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-2/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@big_joiner_to_ultra_joiner.html * {igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner} (NEW): - {shard-bmg}: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-2/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-dg2-set2: [PASS][7] -> [SKIP][8] +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd: - shard-dg2-set2: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-435/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [PASS][11] -> [DMESG-WARN][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [DMESG-FAIL][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_exec_threads@threads-cm-fd-userptr-rebind: - shard-lnl: [PASS][14] -> [FAIL][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-7/igt@xe_exec_threads@threads-cm-fd-userptr-rebind.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@xe_exec_threads@threads-cm-fd-userptr-rebind.html * igt@xe_pm@s2idle-mocs: - shard-dg2-set2: NOTRUN -> [ABORT][16] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-464/igt@xe_pm@s2idle-mocs.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: NOTRUN -> [FAIL][17] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@xe_tlb@basic-tlb.html #### Warnings #### * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][18] ([Intel XE#314]) -> [SKIP][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: [SKIP][20] ([Intel XE#373]) -> [SKIP][21] [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd-fast.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][22] ([Intel XE#651]) -> [SKIP][23] +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][24] ([Intel XE#653]) -> [SKIP][25] +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2-set2: [SKIP][26] ([Intel XE#455]) -> [SKIP][27] +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-466/igt@kms_vrr@seamless-rr-switch-virtual.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_vrr@seamless-rr-switch-virtual.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - {shard-bmg}: [FAIL][28] ([Intel XE#1288]) -> [DMESG-FAIL][29] [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-4/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-4/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - {shard-bmg}: [SKIP][30] ([Intel XE#2887]) -> [SKIP][31] +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - {shard-bmg}: [SKIP][32] ([Intel XE#2724]) -> [SKIP][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_hpd@dp-hpd-fast: - {shard-bmg}: [SKIP][34] ([Intel XE#2252]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-fast.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - {shard-bmg}: [SKIP][36] ([Intel XE#2320]) -> [SKIP][37] [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_flip@2x-blocking-wf_vblank@ad-dp2-hdmi-a3: - {shard-bmg}: [PASS][38] -> [INCOMPLETE][39] [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank@ad-dp2-hdmi-a3.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank@ad-dp2-hdmi-a3.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - {shard-bmg}: [SKIP][40] ([Intel XE#2311]) -> [SKIP][41] +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - {shard-bmg}: [FAIL][42] ([Intel XE#2333]) -> [SKIP][43] [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - {shard-bmg}: [SKIP][44] ([Intel XE#2313]) -> [SKIP][45] +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_joiner@invalid-modeset-force-big-joiner@big_joiner_on_last_pipe: - {shard-bmg}: NOTRUN -> [FAIL][46] +2 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner@big_joiner_on_last_pipe.html * igt@kms_plane_scaling@planes-upscale-20x20: - {shard-bmg}: [PASS][47] -> [SKIP][48] +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_vrr@seamless-rr-switch-virtual: - {shard-bmg}: [SKIP][49] ([Intel XE#1499]) -> [SKIP][50] [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-virtual.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd: - {shard-bmg}: [PASS][51] -> [FAIL][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-8/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-2/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html * igt@xe_pm@s2idle-mocs: - {shard-bmg}: NOTRUN -> [ABORT][53] [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-4/igt@xe_pm@s2idle-mocs.html New tests --------- New tests have been introduced between XEIGT_8046_full and XEIGTPW_11849_full: ### New IGT tests (3) ### * igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner: - Statuses : 1 fail(s) 2 skip(s) - Exec time: [0.07, 4.31] s * igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@big_joiner_to_ultra_joiner: - Statuses : 1 fail(s) 2 skip(s) - Exec time: [0.06, 4.30] s * igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11849_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1125]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@bad-pitch-0: - shard-dg2-set2: [PASS][55] -> [SKIP][56] ([i915#6077]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-0.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#664]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#1426]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1407]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#316]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#829]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-464/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#619]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#610]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1124]) +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#607]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1124]) +6 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2191]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2191]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#367]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#367]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2887]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#787]) +83 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1152]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#373]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#306]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#306]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#373]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#1178]) +1 other test fail [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#1188]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-436/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#308]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1413]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1424]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-suspend: - shard-lnl: [PASS][86] -> [INCOMPLETE][87] ([Intel XE#1616]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-2/igt@kms_cursor_crc@cursor-suspend.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#309]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#1475]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#323]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#702]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1421]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][94] ([Intel XE#1504]) +1 other test timeout [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#886]) +9 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#651]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#783]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#651]) +24 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +18 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#653]) +29 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1503] / [Intel XE#599]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html * {igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#455]) +21 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner.html * igt@kms_plane@plane-position-covered: - shard-lnl: [PASS][106] -> [DMESG-FAIL][107] ([Intel XE#324]) +2 other tests dmesg-fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_plane@plane-position-covered.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_plane@plane-position-covered.html * igt@kms_plane@plane-position-covered@pipe-b-plane-4: - shard-lnl: [PASS][108] -> [DMESG-WARN][109] ([Intel XE#324]) +3 other tests dmesg-warn [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][110] -> [FAIL][111] ([Intel XE#616]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-436/igt@kms_plane_cursor@viewport.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-433/igt@kms_plane_cursor@viewport.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#599]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [PASS][113] -> [FAIL][114] ([Intel XE#361]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1122]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: NOTRUN -> [FAIL][119] ([Intel XE#718]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1129]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2893]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1128]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2850]) +14 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_psr@pr-basic.html * igt@kms_psr@psr2-dpms: - shard-lnl: [PASS][126] -> [FAIL][127] ([Intel XE#1649]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-5/igt@kms_psr@psr2-dpms.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@kms_psr@psr2-dpms.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1127]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1127]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#327]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1435]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#330]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][133] -> [FAIL][134] ([Intel XE#2159]) +1 other test fail [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: NOTRUN -> [FAIL][135] ([Intel XE#2443]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1499] / [Intel XE#599]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-5/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#756]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1123]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1126]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1392]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#288]) +22 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_reset@gt-reset-stress: - shard-lnl: NOTRUN -> [FAIL][144] ([Intel XE#2895]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [PASS][145] -> [SKIP][146] ([Intel XE#1192]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-7/igt@xe_live_ktest@xe_dma_buf.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][147] -> [FAIL][148] ([Intel XE#1204] / [Intel XE#2136]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-432/igt@xe_module_load@reload-no-display.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@xe_module_load@reload-no-display.html * igt@xe_oa@mi-rpc: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2541]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-464/igt@xe_oa@mi-rpc.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [PASS][150] -> [FAIL][151] ([Intel XE#2514]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - shard-lnl: NOTRUN -> [FAIL][152] ([Intel XE#2514]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_peer2peer@read: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1061]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@xe_peer2peer@read.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-vm-bind-userptr: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#584]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][156] -> [FAIL][157] ([Intel XE#958]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#944]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-gt-list: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#944]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-8/igt@xe_query@multigpu-query-gt-list.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - {shard-bmg}: [FAIL][160] ([Intel XE#827]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@crc: - shard-lnl: [FAIL][162] ([Intel XE#1874]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-3/igt@kms_async_flips@crc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-lnl: [FAIL][164] ([Intel XE#1656]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-3/igt@kms_async_flips@crc@pipe-b-edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [FAIL][166] ([Intel XE#1659]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [DMESG-WARN][168] ([Intel XE#877]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-lnl: [FAIL][170] -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_flip@2x-flip-vs-dpms: - {shard-bmg}: [DMESG-WARN][174] ([Intel XE#877]) -> [PASS][175] +4 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a6-dp4: - shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#1195]) -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-436/igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a6-dp4.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-434/igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][178] ([Intel XE#886]) -> [PASS][179] +6 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip_tiling@flip-change-tiling@pipe-a-edp-1-4-to-x: - shard-lnl: [FAIL][180] ([Intel XE#1491]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-edp-1-4-to-x.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-edp-1-4-to-x.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-lnl: [INCOMPLETE][182] -> [PASS][183] +4 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][184] ([Intel XE#324]) -> [PASS][185] +7 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][186] ([Intel XE#361]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [INCOMPLETE][188] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-3/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@universal-planes-dpms@plane-50: - shard-lnl: [TIMEOUT][190] ([Intel XE#1620]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-8/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [FAIL][192] ([Intel XE#899]) -> [PASS][193] +2 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][194] ([Intel XE#2443]) -> [PASS][195] +3 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-6/igt@kms_vrr@flipline.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-5/igt@kms_vrr@flipline.html * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][196] ([Intel XE#2754]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-6/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-6/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race: - shard-lnl: [DMESG-WARN][198] -> [PASS][199] +3 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-4/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-2/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html * igt@xe_exec_reset@virtual-close-fd: - {shard-bmg}: [FAIL][200] -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-1/igt@xe_exec_reset@virtual-close-fd.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-3/igt@xe_exec_reset@virtual-close-fd.html - shard-dg2-set2: [FAIL][202] -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-432/igt@xe_exec_reset@virtual-close-fd.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-433/igt@xe_exec_reset@virtual-close-fd.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [DMESG-FAIL][204] ([Intel XE#1620]) -> [PASS][205] +1 other test pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-4/igt@xe_gt_freq@freq_reset_multiple.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_oa@oa-exponents: - {shard-bmg}: [FAIL][206] ([Intel XE#2723]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-bmg-4/igt@xe_oa@oa-exponents.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-bmg-8/igt@xe_oa@oa-exponents.html - shard-lnl: [FAIL][208] ([Intel XE#2723]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-6/igt@xe_oa@oa-exponents.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@xe_oa@oa-exponents.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [ABORT][210] ([Intel XE#1794]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html #### Warnings #### * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][212] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][213] ([Intel XE#829]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8046/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [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#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [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#2895]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2895 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [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 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_8046 -> IGTPW_11849 * Linux: xe-1994-c41c6b36db6d8675dfb21e7ab8570a3932608654 -> xe-1995-126b085652ff525948f88b62128ec9d95e00e281 IGTPW_11849: 11849 IGT_8046: 8046 xe-1994-c41c6b36db6d8675dfb21e7ab8570a3932608654: c41c6b36db6d8675dfb21e7ab8570a3932608654 xe-1995-126b085652ff525948f88b62128ec9d95e00e281: 126b085652ff525948f88b62128ec9d95e00e281 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11849/index.html [-- Attachment #2: Type: text/html, Size: 62356 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) 2024-10-01 7:34 [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati ` (3 preceding siblings ...) 2024-10-01 18:14 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-02 5:43 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-02 5:43 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100293 bytes --] == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) URL : https://patchwork.freedesktop.org/series/138525/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15464_full -> IGTPW_11849_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11849_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11849_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_11849/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11849_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][3] +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-4/igt@kms_joiner@basic-force-big-joiner.html * {igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner} (NEW): - shard-mtlp: NOTRUN -> [SKIP][4] +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner.html * {igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner} (NEW): - shard-dg2: NOTRUN -> [SKIP][5] +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner.html - shard-rkl: NOTRUN -> [SKIP][6] +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner.html - shard-dg1: NOTRUN -> [SKIP][7] +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-mtlp: [PASS][8] -> [FAIL][9] +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html #### Warnings #### * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: [SKIP][10] ([i915#4423]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-13/igt@kms_joiner@basic-force-ultra-joiner.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@kms_joiner@basic-force-ultra-joiner.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_joiner@basic-big-joiner: - {shard-tglu-1}: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_vblank@ts-continuation-dpms-suspend: - {shard-tglu-1}: NOTRUN -> [ABORT][13] +1 other test abort [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-1/igt@kms_vblank@ts-continuation-dpms-suspend.html New tests --------- New tests have been introduced between CI_DRM_15464_full and IGTPW_11849_full: ### New IGT tests (9) ### * igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner: - Statuses : 5 skip(s) - Exec time: [0.00, 3.56] s * igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@big_joiner_to_ultra_joiner: - Statuses : 5 skip(s) - Exec time: [0.0, 3.56] s * igt@kms_joiner@switch-modeset-big-joiner-ultra-joiner@ultra_joiner_to_big_joiner: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_lease@setcrtc-implicit-plane@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_lease@setcrtc-implicit-plane@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.17] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.89] s * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.87] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.45] s Known issues ------------ Here are the changes found in IGTPW_11849_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#6230]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][15] ([i915#11814] / [i915#11815]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@drm_fdinfo@virtual-busy-idle-all.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@drm_fdinfo@virtual-busy-idle-all.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@fbdev@unaligned-read: - shard-dg2: [PASS][19] -> [SKIP][20] ([i915#2582]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-1/igt@fbdev@unaligned-read.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@fbdev@unaligned-read.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@close-race: - shard-snb: NOTRUN -> [FAIL][22] ([i915#12297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb5/igt@gem_busy@close-race.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3936]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-4/igt@gem_ccs@block-multicopy-inplace.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@hostile: - shard-tglu: NOTRUN -> [FAIL][31] ([i915#11980]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][32] ([i915#1099]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb6/igt@gem_ctx_persistence@processes.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][33] ([i915#8898]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb2/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg2: [PASS][34] -> [FAIL][35] ([i915#5784]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@gem_eio@unwedge-stress.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@gem_eio@unwedge-stress.html - shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-14/igt@gem_eio@unwedge-stress.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_big@single: - shard-tglu: [PASS][39] -> [ABORT][40] ([i915#11713]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-tglu-2/igt@gem_exec_big@single.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][44] ([i915#2842]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-default.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +12 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_schedule@pi-ringfull@rcs0: - shard-tglu: NOTRUN -> [FAIL][51] ([i915#12296]) +5 other tests fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@gem_exec_schedule@pi-ringfull@rcs0.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][53] -> [INCOMPLETE][54] ([i915#11441]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@gem_mmap_gtt@bad-object.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@gem_mmap_gtt@basic-short.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@gem_mmap_wc@copy.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][71] ([i915#2658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@gem_pxp@create-regular-context-2.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@gem_pxp@create-regular-context-2.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#4270]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#8411]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4885]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4885]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3281] / [i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-18/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3281] / [i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@gen9_exec_parse@shadow-peek.html - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][95] -> [ABORT][96] ([i915#9820]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][98] ([i915#8399]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#6590]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][100] ([i915#2681]) +1 other test warn [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][101] -> [FAIL][102] ([i915#3591]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8431]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][105] -> [SKIP][106] ([i915#7984]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-4/igt@i915_power@sanity.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#7984]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6188]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5723]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb7/igt@i915_selftest@mock.html - shard-tglu: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) +1 other test dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@i915_selftest@mock.html - shard-mtlp: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) +1 other test dmesg-warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#9311]) +1 other test dmesg-warn [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@i915_selftest@mock@memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][115] ([i915#9311]) +1 other test dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3826]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#8709]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#9531]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][127] -> [FAIL][128] ([i915#5138]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][130] +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +64 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +79 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#12313]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-snb: NOTRUN -> [SKIP][135] +80 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-dg2: [PASS][138] -> [SKIP][139] ([i915#9197]) +22 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +9 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +177 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#9197]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +124 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4087]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_edid@vga-edid-read: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#7828]) +10 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#7828]) +8 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3116] / [i915#3299]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3116]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#11453]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#11453]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#11453]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3555]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#9809]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4103]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9723]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#1769] / [i915#3555] / [i915#3804]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3804]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#1257]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#8812]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#8812]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3955]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3469]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#2065] / [i915#4854]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4854]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#4854]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][176] ([i915#1839]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9337]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3637] / [i915#3966]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][180] +23 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_flip@2x-plain-flip.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9934]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@kms_flip@2x-plain-flip.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3637]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][183] +10 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][184] -> [FAIL][185] ([i915#2122]) +3 other tests fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][186] ([i915#2122]) +3 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#2672]) +6 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672] / [i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672] / [i915#3555]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555] / [i915#8813]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +6 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg2: [PASS][197] -> [SKIP][198] ([i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672]) +7 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [PASS][201] -> [SKIP][202] ([i915#5354]) +7 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +10 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1825]) +30 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html - shard-dg1: NOTRUN -> [SKIP][205] +13 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [PASS][206] -> [SKIP][207] +8 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#5439]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#10055]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3023]) +21 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8708]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8708]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#10433] / [i915#3458]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5354]) +17 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +9 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8708]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][219] -> [SKIP][220] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg1: NOTRUN -> [DMESG-WARN][222] ([i915#1982] / [i915#4423]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_lowres@tiling-4: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][224] ([i915#8292]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][225] ([i915#8292]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8152] / [i915#9423]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#12247]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-tglu: NOTRUN -> [SKIP][228] ([i915#12247]) +18 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][229] ([i915#12247] / [i915#9423]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#12247]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [PASS][231] -> [SKIP][232] ([i915#12247] / [i915#8152] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#12247] / [i915#8152]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#12247]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#12247] / [i915#6953]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#12247] / [i915#6953] / [i915#9423]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#12247] / [i915#6953]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#12247] / [i915#6953]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#12247]) +7 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-dg2: [PASS][243] -> [SKIP][244] ([i915#12247]) +8 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#6953]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-dg2: [PASS][246] -> [SKIP][247] ([i915#6953] / [i915#8152] / [i915#9423]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-d: - shard-dg2: [PASS][248] -> [SKIP][249] ([i915#8152]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#9812]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#5354]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9685]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][253] -> [FAIL][254] ([i915#9295]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#8430]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#9519]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: [PASS][257] -> [SKIP][258] ([i915#9519]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#9519]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#9519]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#9519]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#6524]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#11520]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#11520]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#11520]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#9808]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][268] ([i915#11520]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12316]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#11520]) +7 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9683]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#9683]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#9683]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-suspend: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#1072] / [i915#9732]) +13 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9688]) +6 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9732]) +22 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-sprite-plane-move: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +10 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +19 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9685]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#4884]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#4235]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-7/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#5289]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#11131]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#5190]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#5289]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#5289]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#11131] / [i915#5190]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#5289]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][289] ([i915#12231]) +1 other test abort [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@kms_setmode@basic-clone-single-crtc.html - shard-dg1: NOTRUN -> [INCOMPLETE][291] ([i915#2295]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-12/igt@kms_setmode@basic-clone-single-crtc.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8809]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][293] ([IGT#2] / [i915#6493]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#8623]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#11920]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#9906]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#9906]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#2437]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#2437]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#2437]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#2433]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][304] -> [FAIL][305] ([i915#11943]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][306] -> [FAIL][307] ([i915#11943]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][308] -> [FAIL][309] ([i915#11943]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@cpu-hotplug: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#8850]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all: - shard-rkl: [PASS][311] -> [FAIL][312] ([i915#4349]) +1 other test fail [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#8516]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#3708]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3708]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#3708]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#3708]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][318] +107 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-10/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#9917]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#4818]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-6/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][321] ([i915#9846]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][323] ([i915#12027]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][325] ([i915#9561]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-10/igt@gem_ctx_freq@sysfs@gt0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][327] ([i915#2842]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][329] ([i915#10131] / [i915#9697]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][331] ([i915#7790]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb1/igt@i915_pm_rps@reset.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][333] ([i915#12216]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][335] ([i915#5138]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: [SKIP][337] ([i915#9197]) -> [PASS][338] +28 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_cursor_crc@cursor-suspend: - shard-dg1: [INCOMPLETE][339] -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-13/igt@kms_cursor_crc@cursor-suspend.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-15/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][341] ([i915#2122]) -> [PASS][342] +3 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank: - shard-mtlp: [FAIL][343] ([i915#2122]) -> [PASS][344] +1 other test pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-1/igt@kms_flip@blocking-wf_vblank.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@kms_flip@blocking-wf_vblank.html - shard-dg2: [FAIL][345] ([i915#2122]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-4/igt@kms_flip@blocking-wf_vblank.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_flip@blocking-wf_vblank.html - shard-rkl: [FAIL][347] ([i915#11961] / [i915#2122]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-rkl: [FAIL][349] ([i915#2122]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-rmfb-interruptible: - shard-dg2: [SKIP][351] ([i915#5354]) -> [PASS][352] +9 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_flip@flip-vs-rmfb-interruptible.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-1/igt@kms_flip@flip-vs-rmfb-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-tglu: [FAIL][353] ([i915#2122]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-tglu-9/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_flip_tiling@flip-change-tiling: - shard-dg2: [SKIP][355] ([i915#3555]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_flip_tiling@flip-change-tiling.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][357] -> [PASS][358] +5 other tests pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [INCOMPLETE][359] -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-10/igt@kms_pipe_crc_basic@suspend-read-crc.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [SKIP][361] ([i915#7294]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-dg2: [SKIP][363] ([i915#8152] / [i915#9423]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [SKIP][365] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d: - shard-dg2: [SKIP][367] ([i915#12247] / [i915#8152]) -> [PASS][368] +2 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: [SKIP][369] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: - shard-dg2: [SKIP][371] ([i915#12247]) -> [PASS][372] +14 other tests pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][373] ([i915#8152]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html * igt@kms_pm_rpm@basic-rte: - shard-dg1: [DMESG-WARN][375] ([i915#4423]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-13/igt@kms_pm_rpm@basic-rte.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][377] ([i915#9519]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [SKIP][379] ([i915#9519]) -> [PASS][380] +2 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_properties@crtc-properties-legacy: - shard-dg2: [SKIP][381] ([i915#11521]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_properties@crtc-properties-legacy.html * igt@perf_pmu@busy-idle-check-all: - shard-dg2: [FAIL][383] -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@perf_pmu@busy-idle-check-all.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@perf_pmu@busy-idle-check-all.html - shard-dg1: [FAIL][385] -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-15/igt@perf_pmu@busy-idle-check-all.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@perf_pmu@busy-idle-check-all.html - shard-mtlp: [FAIL][387] -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [FAIL][389] ([i915#4349]) -> [PASS][390] +4 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@bcs0.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][391] ([i915#4349]) -> [PASS][392] +3 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@vcs0.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][393] ([i915#4349]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@prime_mmap_kms@buffer-sharing: - shard-dg2: [SKIP][395] -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-8/igt@prime_mmap_kms@buffer-sharing.html #### Warnings #### * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][397] ([i915#9197]) -> [SKIP][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][399] -> [SKIP][400] ([i915#9197]) +2 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2: [SKIP][401] ([i915#5190] / [i915#9197]) -> [SKIP][402] ([i915#5190]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2: [SKIP][403] ([i915#4538] / [i915#5190]) -> [SKIP][404] ([i915#5190] / [i915#9197]) +3 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2: [SKIP][405] ([i915#5190] / [i915#9197]) -> [SKIP][406] ([i915#4538] / [i915#5190]) +5 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: [SKIP][407] ([i915#5190]) -> [SKIP][408] ([i915#5190] / [i915#9197]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: [SKIP][409] ([i915#4423]) -> [SKIP][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-13/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][411] ([i915#9197]) -> [SKIP][412] ([i915#10307] / [i915#6095]) +8 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2: [SKIP][413] ([i915#10307] / [i915#6095]) -> [SKIP][414] ([i915#9197]) +4 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: [SKIP][415] ([i915#9197]) -> [SKIP][416] ([i915#12313]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][417] ([i915#9197]) -> [SKIP][418] ([i915#7118] / [i915#9424]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [SKIP][419] ([i915#9197]) -> [SKIP][420] ([i915#9424]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_content_protection@lic-type-0.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][421] ([i915#9424]) -> [SKIP][422] ([i915#9433]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg1-18/igt@kms_content_protection@mei-interface.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: [TIMEOUT][423] ([i915#7173]) -> [SKIP][424] ([i915#7118]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-10/igt@kms_content_protection@srm.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][425] ([i915#7118] / [i915#9424]) -> [SKIP][426] ([i915#7118] / [i915#7162] / [i915#9424]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-7/igt@kms_content_protection@type1.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-10/igt@kms_content_protection@type1.html - shard-snb: [SKIP][427] -> [INCOMPLETE][428] ([i915#8816]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-snb4/igt@kms_content_protection@type1.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-snb1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: [SKIP][429] ([i915#3555]) -> [SKIP][430] ([i915#9197]) +2 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][431] ([i915#9197]) -> [SKIP][432] ([i915#11453]) +2 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#3555]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][435] ([i915#11453]) -> [SKIP][436] ([i915#9197]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: [SKIP][437] ([i915#5354]) -> [SKIP][438] ([i915#9197]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: [SKIP][439] ([i915#9197]) -> [SKIP][440] ([i915#5354]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: [SKIP][441] ([i915#9197]) -> [SKIP][442] ([i915#4103] / [i915#4213]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: [SKIP][443] ([i915#4103] / [i915#4213]) -> [SKIP][444] ([i915#9197]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: [SKIP][445] ([i915#9197]) -> [SKIP][446] ([i915#8588]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: [SKIP][447] ([i915#3555] / [i915#3840]) -> [SKIP][448] ([i915#9197]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-8/igt@kms_dsc@dsc-with-formats.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: [SKIP][449] ([i915#9197]) -> [SKIP][450] ([i915#3555] / [i915#3840]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15464/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats.html * == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11849/index.html [-- Attachment #2: Type: text/html, Size: 109051 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-03 4:24 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-01 7:34 [PATCH i-g-t v3 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati 2024-10-01 7:34 ` [PATCH i-g-t v3 1/1] " Santhosh Reddy Guddati 2024-10-03 4:23 ` Karthik B S 2024-10-01 10:37 ` ✓ CI.xeBAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev3) Patchwork 2024-10-01 10:44 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-01 18:14 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-02 5:43 ` ✗ 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