* [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs
@ 2023-11-14 8:45 Vinod Govindapillai
2023-11-14 8:45 ` [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility " Vinod Govindapillai
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Vinod Govindapillai @ 2023-11-14 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: juha-pekka.heikkila
Add provision to ignore long HPDs based on the IGNORE_LONG_HPD
environment variable in kms_flip tests
Vinod Govindapillai (1):
tests/kms_flip: add possibility to ignore long HPDs
tests/kms_flip.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility to ignore long HPDs 2023-11-14 8:45 [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs Vinod Govindapillai @ 2023-11-14 8:45 ` Vinod Govindapillai 2023-11-22 8:20 ` Karthik B S 2023-11-14 9:22 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_flip: add provision " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Vinod Govindapillai @ 2023-11-14 8:45 UTC (permalink / raw) To: igt-dev; +Cc: juha-pekka.heikkila In some CI environments, spurious long HPDs are impacting the kms_flip test results. The provision to set ignore long HPDs was not being used by the kms_flip tests. Call igt_display_require for kms_flip as well which will track the usage of environment variable IGT_KMS_IGNORE_HPD Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- tests/kms_flip.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/kms_flip.c b/tests/kms_flip.c index fc7cee050..c32b19412 100755 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -2116,12 +2116,13 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) { 0, TEST_BO_TOOBIG | TEST_NO_2X_OUTPUT, "bo-too-big" }, { 10, TEST_FLIP | TEST_SUSPEND, "flip-vs-suspend" }, }; + igt_display_t display; int i; igt_fixture { drm_fd = drm_open_driver_master(DRIVER_ANY); - igt_enable_connectors(drm_fd); + igt_display_require(&display, drm_fd); kmstest_set_vt_graphics_mode(); igt_install_exit_handler(kms_flip_exit_handler); @@ -2192,6 +2193,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) } igt_stop_signal_helper(); - igt_fixture + igt_fixture { + igt_display_fini(&display); drm_close_driver(drm_fd); + } } -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility to ignore long HPDs 2023-11-14 8:45 ` [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility " Vinod Govindapillai @ 2023-11-22 8:20 ` Karthik B S 0 siblings, 0 replies; 7+ messages in thread From: Karthik B S @ 2023-11-22 8:20 UTC (permalink / raw) To: Vinod Govindapillai, igt-dev; +Cc: juha-pekka.heikkila On 11/14/2023 2:15 PM, Vinod Govindapillai wrote: > In some CI environments, spurious long HPDs are impacting the > kms_flip test results. The provision to set ignore long HPDs was > not being used by the kms_flip tests. Call igt_display_require > for kms_flip as well which will track the usage of environment > variable IGT_KMS_IGNORE_HPD > > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_flip.c | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_flip.c b/tests/kms_flip.c > index fc7cee050..c32b19412 100755 > --- a/tests/kms_flip.c > +++ b/tests/kms_flip.c > @@ -2116,12 +2116,13 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) > { 0, TEST_BO_TOOBIG | TEST_NO_2X_OUTPUT, "bo-too-big" }, > { 10, TEST_FLIP | TEST_SUSPEND, "flip-vs-suspend" }, > }; > + igt_display_t display; > int i; > > igt_fixture { > drm_fd = drm_open_driver_master(DRIVER_ANY); > > - igt_enable_connectors(drm_fd); > + igt_display_require(&display, drm_fd); > > kmstest_set_vt_graphics_mode(); > igt_install_exit_handler(kms_flip_exit_handler); > @@ -2192,6 +2193,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) > } > igt_stop_signal_helper(); > > - igt_fixture > + igt_fixture { > + igt_display_fini(&display); > drm_close_driver(drm_fd); > + } > } ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_flip: add provision to ignore long HPDs 2023-11-14 8:45 [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs Vinod Govindapillai 2023-11-14 8:45 ` [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility " Vinod Govindapillai @ 2023-11-14 9:22 ` Patchwork 2023-11-14 9:31 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-14 9:22 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3795 bytes --] == Series Details == Series: tests/kms_flip: add provision to ignore long HPDs URL : https://patchwork.freedesktop.org/series/126382/ State : success == Summary == CI Bug Log - changes from XEIGT_7585_BAT -> XEIGTPW_10181_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_10181_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_10181_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10181_BAT: ### IGT changes ### #### Warnings #### * igt@kms_flip@basic-flip-vs-modeset: - bat-atsm-2: [SKIP][1] ([Intel XE#626]) -> [SKIP][2] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7585/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10181/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html Known issues ------------ Here are the changes found in XEIGTPW_10181_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#480]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7585/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10181/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-dg2-oem2: [FAIL][5] ([i915#2346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7585/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10181/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [FAIL][7] ([Intel XE#480]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7585/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10181/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][9] ([Intel XE#616] / [Intel XE#750]) -> [DMESG-FAIL][10] ([Intel XE#282] / [i915#2017]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7585/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10181/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/626 [Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7585 -> IGTPW_10181 IGTPW_10181: 10181 IGT_7585: 7585 xe-488-7dc3dda9b2df5a5c8949532f254a0689de70f093: 7dc3dda9b2df5a5c8949532f254a0689de70f093 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10181/index.html [-- Attachment #2: Type: text/html, Size: 4534 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_flip: add provision to ignore long HPDs 2023-11-14 8:45 [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs Vinod Govindapillai 2023-11-14 8:45 ` [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility " Vinod Govindapillai 2023-11-14 9:22 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_flip: add provision " Patchwork @ 2023-11-14 9:31 ` Patchwork 2023-11-14 15:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-11-22 12:58 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-14 9:31 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3149 bytes --] == Series Details == Series: tests/kms_flip: add provision to ignore long HPDs URL : https://patchwork.freedesktop.org/series/126382/ State : success == Summary == CI Bug Log - changes from IGT_7585 -> IGTPW_10181 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/index.html Participating hosts (34 -> 33) ------------------------------ Additional (1): bat-kbl-2 Missing (2): fi-bsw-nick fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10181 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/bat-kbl-2/igt@fbdev@info.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271]) +24 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][3] -> [INCOMPLETE][4] ([i915#9527]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-kbl-2: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1845]) +14 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/bat-kbl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html #### Possible fixes #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][6] ([i915#8668]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981 [i915#9527]: https://gitlab.freedesktop.org/drm/intel/issues/9527 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7585 -> IGTPW_10181 CI-20190529: 20190529 CI_DRM_13871: 811507c09ec3722450601b3642c47ab63830112b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10181: 10181 IGT_7585: 7585 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/index.html [-- Attachment #2: Type: text/html, Size: 3862 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_flip: add provision to ignore long HPDs 2023-11-14 8:45 [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs Vinod Govindapillai ` (2 preceding siblings ...) 2023-11-14 9:31 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-11-14 15:08 ` Patchwork 2023-11-22 12:58 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-14 15:08 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: tests/kms_flip: add provision to ignore long HPDs URL : https://patchwork.freedesktop.org/series/126382/ State : failure == Summary == CI Bug Log - changes from IGT_7585_full -> IGTPW_10181_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10181_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10181_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10181/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-mtlp0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10181_full: ### IGT changes ### #### Possible regressions #### * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-rkl: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_big_joiner@basic.html * igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][9] ([i915#9618]) -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pessimistic}: - shard-apl: NOTRUN -> [TIMEOUT][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pessimistic.html * {igt@drm_mm@drm_mm@drm_test_mm_lowest}: - shard-rkl: [PASS][12] -> [TIMEOUT][13] +1 other test timeout [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@drm_mm@drm_mm@drm_test_mm_lowest.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@drm_mm@drm_mm@drm_test_mm_lowest.html - shard-snb: [PASS][14] -> [TIMEOUT][15] +1 other test timeout [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-snb5/igt@drm_mm@drm_mm@drm_test_mm_lowest.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb6/igt@drm_mm@drm_mm@drm_test_mm_lowest.html * {igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options}: - shard-mtlp: [PASS][16] -> [TIMEOUT][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-7/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-6/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html - shard-apl: [PASS][18] -> [TIMEOUT][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-apl2/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl2/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html - shard-dg2: NOTRUN -> [TIMEOUT][20] +1 other test timeout [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html * {igt@kms_selftest@drm_damage_helper@drm_test_damage_iter_single_damage_src_moved}: - shard-snb: NOTRUN -> [TIMEOUT][21] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb4/igt@kms_selftest@drm_damage_helper@drm_test_damage_iter_single_damage_src_moved.html - shard-mtlp: NOTRUN -> [TIMEOUT][22] +1 other test timeout [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-1/igt@kms_selftest@drm_damage_helper@drm_test_damage_iter_single_damage_src_moved.html * {igt@kms_selftest@drm_dp_mst_helper@drm_test_dp_mst_sideband_msg_req_decode}: - shard-dg2: [PASS][23] -> [TIMEOUT][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-2/igt@kms_selftest@drm_dp_mst_helper@drm_test_dp_mst_sideband_msg_req_decode.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_selftest@drm_dp_mst_helper@drm_test_dp_mst_sideband_msg_req_decode.html * {igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create}: - shard-dg1: [PASS][25] -> [TIMEOUT][26] +1 other test timeout [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-16/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html * {igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state}: - shard-tglu: [PASS][27] -> [TIMEOUT][28] +2 other tests timeout [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-6/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-9/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html Known issues ------------ Here are the changes found in IGTPW_10181_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [PASS][29] -> [SKIP][30] ([i915#8411]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][31] ([i915#6122]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@api_intel_bb@render-ccs.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#7701]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#7701]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][34] ([i915#7701]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#8414]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][36] -> [FAIL][37] ([i915#7742]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8414]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@fbdev@unaligned-read: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#2582]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@fbdev@unaligned-read.html * igt@fbdev@unaligned-write: - shard-rkl: [PASS][40] -> [SKIP][41] ([i915#2582]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@fbdev@unaligned-write.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@fbdev@unaligned-write.html * igt@gem_bad_reloc@negative-reloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#7697]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3936]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][45] ([i915#7297]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][46] -> [FAIL][47] ([i915#6268]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][48] ([fdo#109314]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#8555]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#280]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#280]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4812]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4771]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@fairslice: - shard-rkl: [PASS][54] -> [SKIP][55] ([Intel XE#874]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@gem_exec_balancer@fairslice.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4525]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#6334]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#6334]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][59] ([i915#2842]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][60] ([i915#2842]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4812]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4812]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3281]) +16 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [PASS][67] -> [SKIP][68] ([i915#3281]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3281]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3281]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4537] / [i915#4812]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@smoketest-all: - shard-snb: NOTRUN -> [SKIP][72] ([fdo#109271]) +78 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb4/igt@gem_exec_schedule@smoketest-all.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4860]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4565]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#4613]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4613]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][78] -> [TIMEOUT][79] ([i915#5493]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#8289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#284]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][82] ([i915#284]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4077]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@zero-extend: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +9 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [PASS][86] -> [SKIP][87] ([i915#1850]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4083]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [PASS][90] -> [SKIP][91] ([i915#3282]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][93] ([i915#2658]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][94] ([i915#2658]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-10/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3282]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4270]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][97] ([i915#4270]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4270]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3282]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#768]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8428]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4079]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4079]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4885]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][105] ([i915#5889]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4079]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3323]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3297]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3297]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][112] ([i915#3318]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg1: NOTRUN -> [SKIP][113] ([fdo#109289]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@gen3_render_linear_blits.html * igt@gen3_render_tiledx_blits: - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#109289]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109289]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#109289]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#2856]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#2527]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#2527]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2856]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [PASS][121] -> [SKIP][122] ([i915#2527]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-engine-error@bcs0: - shard-rkl: [PASS][123] -> [SKIP][124] ([i915#9588]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@i915_hangman@gt-engine-error@bcs0.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#6227]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][126] ([i915#6227]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][127] -> [INCOMPLETE][128] ([i915#9407]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: NOTRUN -> [FAIL][129] ([i915#3591]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8431]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-1/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#6621]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#8925]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#6245]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][134] ([fdo#109303]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][135] ([fdo#109302]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4077]) +14 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-dg2: [PASS][137] -> [FAIL][138] ([fdo#103375]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-11/igt@i915_suspend@forcewake.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#4212]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4212]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-apl: NOTRUN -> [SKIP][141] ([fdo#109271]) +97 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#1845] / [i915#4098]) +28 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][143] ([i915#8247]) +3 other tests fail [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][144] ([i915#8247]) +3 other tests fail [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][147] ([fdo#109271] / [i915#1769]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][148] ([i915#1769] / [i915#3555]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#1769] / [i915#3555]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538] / [i915#5286]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#111614]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#5286]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#5286]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#5138]) +1 other test fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111614] / [i915#3638]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3638]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-rkl: [PASS][158] -> [SKIP][159] ([i915#1845] / [i915#4098]) +16 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][160] ([fdo#111614]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6187]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5190]) +22 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#110723]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4538]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#4538] / [i915#5190]) +8 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-glk: NOTRUN -> [SKIP][166] ([fdo#109271]) +63 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][167] ([fdo#111615]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111615]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#111615]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4087] / [i915#7213]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#7213] / [i915#9010]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4087]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][173] ([fdo#111827]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#111827]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_chamelium_color@gamma.html - shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111827]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#7828]) +14 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#7828]) +9 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#7828]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-7/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#7828]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#7828]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color@pipe-a-hdmi-a-2-gamma: - shard-rkl: NOTRUN -> [FAIL][181] ([i915#6892]) +1 other test fail [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_color@deep-color@pipe-a-hdmi-a-2-gamma.html * igt@kms_color@degamma@pipe-a: - shard-rkl: [PASS][182] -> [SKIP][183] ([i915#4098]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_color@degamma@pipe-a.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_color@degamma@pipe-a.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#6944]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3299]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3299]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#7118]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_content_protection@uevent.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3359]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][190] ([fdo#109279] / [i915#3359]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3359]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3359]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555]) +12 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213] / [i915#5608]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4103]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#4213]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3546]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][199] ([fdo#109274] / [i915#5354]) +8 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@forked-move@all-pipes: - shard-mtlp: NOTRUN -> [DMESG-WARN][200] ([i915#2017]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_cursor_legacy@forked-move@all-pipes.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [PASS][202] -> [DMESG-WARN][203] ([i915#2017]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#8588]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3804]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#1257]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8812]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#1849] / [i915#4098]) +16 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3469]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#4881]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][213] ([fdo#111767] / [fdo#111825]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][214] ([fdo#111825]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8381]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][217] ([fdo#109274]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3637]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@absolute-wf_vblank@c-edp1: - shard-mtlp: [PASS][219] -> [DMESG-WARN][220] ([i915#9157]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-1/igt@kms_flip@absolute-wf_vblank@c-edp1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_flip@absolute-wf_vblank@c-edp1.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3637] / [i915#4098]) +5 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555]) +13 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2672]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#2672]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#5274]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#8708]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][229] ([i915#6880]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: [PASS][230] -> [SKIP][231] ([i915#1849] / [i915#4098]) +8 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#5354]) +44 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#111825] / [i915#1825]) +23 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][234] ([fdo#111825]) +16 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][236] -> [FAIL][237] ([i915#6880]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#8708]) +9 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-tglu: NOTRUN -> [SKIP][239] ([fdo#110189]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#8708]) +29 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#3458]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#5439]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3023]) +14 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3458]) +31 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][245] ([fdo#109280]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][249] ([i915#4573]) +1 other test fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3582]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#8821]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8806]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#8152]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#4098] / [i915#8152]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#5176] / [i915#9423]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#5235]) +7 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#5235]) +15 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#6953] / [i915#8152]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#5235]) +15 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#4098] / [i915#6953] / [i915#8152]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#6524]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#6524] / [i915#6805]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][264] ([fdo#109271] / [i915#658]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][265] ([fdo#109271] / [i915#658]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#4348]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#658]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][268] ([fdo#111068] / [i915#658]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#4078]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@kms_psr@cursor_blt.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#1072]) +9 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_psr@dpms.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#1072]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_psr@primary_render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][272] ([fdo#111615] / [i915#5289]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][273] ([i915#5465]) +1 other test fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#4098]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_setmode@invalid-clone-single-crtc.html - shard-rkl: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#4098]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][276] ([fdo#109309]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][277] -> [FAIL][278] ([i915#9196]) +2 other tests fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@wait-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#4098]) +12 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_vblank@wait-forked-busy-hang.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#2437]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#7387]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][282] -> [FAIL][283] ([i915#4349]) +1 other test fail [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#8850]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][285] ([fdo#112283]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][286] ([fdo#112283]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][287] ([i915#5793]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#5608] / [i915#8516]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#8516]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#8516]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-dg1: NOTRUN -> [SKIP][291] ([fdo#109291]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@prime_udl.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3708] / [i915#4077]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#3291] / [i915#3708]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][294] ([fdo#109295] / [i915#3291] / [i915#3708]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-tglu: NOTRUN -> [SKIP][295] ([fdo#109295] / [fdo#111656]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-9/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3708]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][297] ([fdo#109295] / [i915#3708]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][298] ([fdo#109307]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][299] ([fdo#109307] / [i915#4818]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-tglu: NOTRUN -> [SKIP][300] ([fdo#109315] / [i915#2575]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#2575]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#2575]) +16 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@v3d/v3d_submit_csd@job-perfmon.html - shard-rkl: NOTRUN -> [SKIP][303] ([fdo#109315]) +8 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#2575]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#7711]) +8 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#7711]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#7711]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#2575]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#7711]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * {igt@drm_mm@drm_mm@drm_test_mm_align32}: - shard-dg1: [TIMEOUT][310] -> [PASS][311] +2 other tests pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@drm_mm@drm_mm@drm_test_mm_align32.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@drm_mm@drm_mm@drm_test_mm_align32.html * igt@gem_eio@kms: - shard-dg1: [FAIL][312] ([i915#5784]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@gem_eio@kms.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][314] ([i915#2842]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@gem_exec_fair@basic-none@vecs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][316] ([i915#2842]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][318] ([i915#2842]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_gttfill@engines@vcs0: - shard-glk: [INCOMPLETE][320] -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk6/igt@gem_exec_gttfill@engines@vcs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk9/igt@gem_exec_gttfill@engines@vcs0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][322] ([i915#3281]) -> [PASS][323] +6 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_pwrite@basic-random: - shard-rkl: [SKIP][324] ([i915#3282]) -> [PASS][325] +3 other tests pass [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@gem_pwrite@basic-random.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_pwrite@basic-random.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][326] ([i915#8411]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_workarounds@suspend-resume: - shard-dg2: [FAIL][328] ([fdo#103375]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-5/igt@gem_workarounds@suspend-resume.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][330] ([i915#2527]) -> [PASS][331] +2 other tests pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][332] ([i915#9559]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][334] ([i915#5138]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][336] ([i915#1845] / [i915#4098]) -> [PASS][337] +18 other tests pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: [FAIL][338] ([i915#3743]) -> [PASS][339] +1 other test pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * {igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs-cc}: - shard-rkl: [SKIP][340] ([i915#4098]) -> [PASS][341] +9 other tests pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][342] ([i915#2346]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][344] ([i915#2346]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-glk: [INCOMPLETE][346] ([i915#4839]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][348] ([i915#1849] / [i915#4098]) -> [PASS][349] +12 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: [INCOMPLETE][350] ([i915#180] / [i915#9392]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * {igt@kms_pm_rpm@dpms-lpsp}: - shard-dg1: [SKIP][352] ([i915#9519]) -> [PASS][353] +1 other test pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html * {igt@kms_pm_rpm@dpms-non-lpsp}: - shard-rkl: [SKIP][354] ([i915#9519]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * {igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_res_bpp_refresh_force_on}: - shard-tglu: [TIMEOUT][356] -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-7/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_res_bpp_refresh_force_on.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_res_bpp_refresh_force_on.html * {igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp}: - shard-snb: [TIMEOUT][358] -> [PASS][359] +2 other tests pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-snb4/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb4/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html - shard-mtlp: [TIMEOUT][360] -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-4/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html * {igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create}: - shard-dg2: [TIMEOUT][362] -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html * {igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state}: - shard-rkl: [TIMEOUT][364] -> [PASS][365] +3 other tests pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][366] ([i915#4349]) -> [PASS][367] +3 other tests pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][368] ([i915#9323]) -> [SKIP][369] ([i915#7957]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][370] ([i915#7957]) -> [SKIP][371] ([i915#9323]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_ccs@suspend-resume.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@gem_ccs@suspend-resume.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][372] ([i915#2876]) -> [FAIL][373] ([i915#2842]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-10/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: [WARN][374] ([i915#2658]) -> [SKIP][375] ([i915#3282]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][376] ([i915#2532]) -> [SKIP][377] ([i915#2527]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][378] ([i915#2681]) -> [FAIL][379] ([i915#2681] / [i915#3591]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][380] ([i915#1845] / [i915#4098]) -> [SKIP][381] ([i915#9531]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][382] ([i915#5286]) -> [SKIP][383] ([i915#1845] / [i915#4098]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][384] ([i915#1845] / [i915#4098]) -> [SKIP][385] ([i915#5286]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][386] ([fdo#111614] / [i915#3638]) -> [SKIP][387] ([i915#1845] / [i915#4098]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([fdo#111614] / [i915#3638]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: [SKIP][390] ([fdo#111615]) -> [SKIP][391] ([i915#1845] / [i915#4098]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][392] ([i915#1845] / [i915#4098]) -> [SKIP][393] ([fdo#110723]) +4 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][394] ([fdo#110723]) -> [SKIP][395] ([i915#1845] / [i915#4098]) +4 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][396] ([i915#1845] / [i915#4098]) -> [SKIP][397] ([i915#7118]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][398] ([i915#7118]) -> [SKIP][399] ([i915#1845] / [i915#4098]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_content_protection@type1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: [SKIP][400] ([fdo#109279] / [i915#3359]) -> [SKIP][401] ([i915#1845] / [i915#4098]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][402] ([i915#3555]) -> [SKIP][403] ([i915#1845] / [i915#4098]) +3 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][404] ([i915#1845] / [i915#4098]) -> [SKIP][405] ([i915#3555]) +3 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_crc@cursor-random-32x10.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][406] ([i915#3359]) -> [SKIP][407] ([i915#1845] / [i915#4098]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][408] ([i915#1845] / [i915#4098]) -> [SKIP][409] ([i915#3359]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-rkl: [SKIP][410] ([i915#1845] / [i915#4098]) -> [SKIP][411] ([fdo#111825]) +5 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-rkl: [SKIP][412] ([i915#1845] / [i915#4098]) -> [SKIP][413] ([fdo#111767] / [fdo#111825]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][414] ([i915#1845] / [i915#4098]) -> [SKIP][415] ([i915#4103]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][416] ([fdo#111825]) -> [SKIP][417] ([i915#1845] / [i915#4098]) +2 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][418] ([i915#4098]) -> [SKIP][419] ([i915#3555] / [i915#3840]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_dsc@dsc-basic.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][420] ([i915#3555] / [i915#3840]) -> [SKIP][421] ([i915#1845] / [i915#4098]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][422] ([i915#3955]) -> [SKIP][423] ([fdo#110189] / [i915#3955]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][424] ([fdo#109285]) -> [SKIP][425] ([fdo#109285] / [i915#4098]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][426] ([fdo#111825] / [i915#1825]) -> [SKIP][427] ([i915#1849] / [i915#4098]) +21 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][428] ([i915#1849] / [i915#4098]) -> [SKIP][429] ([i915#3023]) +16 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][430] ([i915#1849] / [i915#4098]) -> [SKIP][431] ([fdo#111825] / [i915#1825]) +29 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][432] ([i915#3023]) -> [SKIP][433] ([i915#1849] / [i915#4098]) +19 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][434] ([i915#3555] / [i915#8228]) -> [SKIP][435] ([i915#4098]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][436] ([i915#3555] / [i915#8228]) -> [SKIP][437] ([i915#1845] / [i915#4098]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][438] ([i915#1845] / [i915#4098]) -> [SKIP][439] ([i915#5289]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][440] ([i915#5289]) -> [SKIP][441] ([i915#1845] / [i915#4098]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][442] ([fdo#111615] / [i915#5289]) -> [SKIP][443] ([i915#1845] / [i915#4098]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/874 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/index.html [-- Attachment #2: Type: text/html, Size: 112541 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_flip: add provision to ignore long HPDs 2023-11-14 8:45 [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs Vinod Govindapillai ` (3 preceding siblings ...) 2023-11-14 15:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-11-22 12:58 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-22 12:58 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: tests/kms_flip: add provision to ignore long HPDs URL : https://patchwork.freedesktop.org/series/126382/ State : success == Summary == CI Bug Log - changes from IGT_7585_full -> IGTPW_10181_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_10181_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10181_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10181/index.html Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10181_full: ### IGT changes ### #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][1] ([i915#9618]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html New tests --------- New tests have been introduced between IGT_7585_full and IGTPW_10181_full: ### New IGT tests (1) ### * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10181_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [PASS][3] -> [SKIP][4] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][5] ([i915#6122]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@api_intel_bb@render-ccs.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@fbdev@unaligned-read: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#2582]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@fbdev@unaligned-read.html * igt@fbdev@unaligned-write: - shard-rkl: [PASS][14] -> [SKIP][15] ([i915#2582]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@fbdev@unaligned-write.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@fbdev@unaligned-write.html * igt@gem_bad_reloc@negative-reloc: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3281]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3936]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#7297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][20] -> [FAIL][21] ([i915#6268]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][22] ([fdo#109314]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@fairslice: - shard-rkl: [PASS][28] -> [SKIP][29] ([Intel XE#874]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@gem_exec_balancer@fairslice.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6334]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][33] ([i915#2842]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +16 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [PASS][41] -> [SKIP][42] ([i915#3281]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@smoketest-all: - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271]) +78 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb4/igt@gem_exec_schedule@smoketest-all.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][52] -> [TIMEOUT][53] ([i915#5493]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#8289]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][56] ([i915#284]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@zero-extend: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +9 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [PASS][60] -> [SKIP][61] ([i915#1850]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [PASS][64] -> [SKIP][65] ([i915#3282]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][67] ([i915#2658]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][68] ([i915#2658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-10/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +11 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#768]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][79] ([i915#5889]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3323]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][86] ([i915#3318]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk2/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg1: NOTRUN -> [SKIP][87] ([fdo#109289]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@gen3_render_linear_blits.html * igt@gen3_render_tiledx_blits: - shard-rkl: NOTRUN -> [SKIP][88] ([fdo#109289]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#109289]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][90] ([fdo#109289]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [PASS][95] -> [SKIP][96] ([i915#2527]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-engine-error@bcs0: - shard-rkl: [PASS][97] -> [SKIP][98] ([i915#9588]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@i915_hangman@gt-engine-error@bcs0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6227]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#6227]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][101] -> [ABORT][102] ([i915#4387]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][103] -> [INCOMPLETE][104] ([i915#9407]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: NOTRUN -> [FAIL][105] ([i915#3591]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-rkl: [PASS][106] -> [INCOMPLETE][107] ([i915#9699]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8431]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-1/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#6621]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#8925]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6245]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][112] ([fdo#109303]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#109302]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4077]) +14 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-dg2: [PASS][115] -> [FAIL][116] ([fdo#103375]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-11/igt@i915_suspend@forcewake.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-apl: NOTRUN -> [SKIP][119] ([fdo#109271]) +97 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#1845] / [i915#4098]) +28 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][121] ([i915#8247]) +3 other tests fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][122] ([i915#8247]) +3 other tests fail [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#1769]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#111614]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#5286]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5286]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#5138]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111614] / [i915#3638]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3638]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-rkl: [PASS][136] -> [SKIP][137] ([i915#1845] / [i915#4098]) +16 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111614]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6187]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +22 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#110723]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-glk: NOTRUN -> [SKIP][144] ([fdo#109271]) +63 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][145] ([fdo#111615]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][146] ([fdo#111615]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#111615]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#2705]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#2705]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_big_joiner@basic.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087] / [i915#7213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7213] / [i915#9010]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4087]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111827]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#111827]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_chamelium_color@gamma.html - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111827]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#7828]) +14 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7828]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#7828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-7/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#7828]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#7828]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color@pipe-a-hdmi-a-2-gamma: - shard-rkl: NOTRUN -> [FAIL][161] ([i915#6892]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_color@deep-color@pipe-a-hdmi-a-2-gamma.html * igt@kms_color@degamma@pipe-a: - shard-rkl: [PASS][162] -> [SKIP][163] ([i915#4098]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_color@degamma@pipe-a.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_color@degamma@pipe-a.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6944]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7118]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_content_protection@uevent.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#7118]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3359]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][170] ([fdo#109279] / [i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3359]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3359]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +12 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213] / [i915#5608]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3546]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274] / [i915#5354]) +8 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@forked-move@all-pipes: - shard-mtlp: NOTRUN -> [DMESG-WARN][180] ([i915#2017]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_cursor_legacy@forked-move@all-pipes.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [PASS][182] -> [DMESG-WARN][183] ([i915#2017]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#8588]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3804]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#1257]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8812]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#1849] / [i915#4098]) +16 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3469]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#4881]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111767] / [fdo#111825]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-14/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274] / [fdo#111767]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#8381]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109274]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][199] -> [INCOMPLETE][200] ([i915#9698]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@absolute-wf_vblank@c-edp1: - shard-mtlp: [PASS][201] -> [DMESG-WARN][202] ([i915#9157]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-1/igt@kms_flip@absolute-wf_vblank@c-edp1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_flip@absolute-wf_vblank@c-edp1.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#4098]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555]) +13 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#5274]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8708]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#6880]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: [PASS][212] -> [SKIP][213] ([i915#1849] / [i915#4098]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5354]) +44 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][215] ([fdo#111825] / [i915#1825]) +23 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][216] ([fdo#111825]) +16 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#1825]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][218] -> [FAIL][219] ([i915#6880]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8708]) +9 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-tglu: NOTRUN -> [SKIP][221] ([fdo#110189]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8708]) +29 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3458]) +7 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5439]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3023]) +14 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3458]) +31 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][227] ([fdo#109280]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-13/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][231] ([i915#4573]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3582]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#8821]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#8806]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#8152]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#4098] / [i915#8152]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#5176] / [i915#9423]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#5235]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#5235]) +15 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#6953] / [i915#8152]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5235]) +15 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#4098] / [i915#6953] / [i915#8152]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#6524]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#6524] / [i915#6805]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][246] ([fdo#109271] / [i915#658]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][247] ([fdo#109271] / [i915#658]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4348]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#658]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][250] ([fdo#111068] / [i915#658]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#4078]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@kms_psr@cursor_blt.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#1072]) +9 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_psr@dpms.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#1072]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_psr@primary_render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][254] ([fdo#111615] / [i915#5289]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][255] ([i915#5465]) +1 other test fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#4098]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@kms_setmode@invalid-clone-single-crtc.html - shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#4098]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][258] ([fdo#109309]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][259] -> [FAIL][260] ([i915#9196]) +2 other tests fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@wait-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#4098]) +12 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_vblank@wait-forked-busy-hang.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2437]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#7387]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][264] -> [FAIL][265] ([i915#4349]) +1 other test fail [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#8850]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][267] ([fdo#112283]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][268] ([fdo#112283]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][269] ([i915#5793]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#5608] / [i915#8516]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][271] ([i915#8516]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#8516]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-dg1: NOTRUN -> [SKIP][273] ([fdo#109291]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@prime_udl.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3708] / [i915#4077]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3291] / [i915#3708]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][276] ([fdo#109295] / [i915#3291] / [i915#3708]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-tglu: NOTRUN -> [SKIP][277] ([fdo#109295] / [fdo#111656]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-9/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3708]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][279] ([fdo#109295] / [i915#3708]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][280] ([fdo#109307]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][281] ([fdo#109307] / [i915#4818]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-tglu: NOTRUN -> [SKIP][282] ([fdo#109315] / [i915#2575]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#2575]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#2575]) +16 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-7/igt@v3d/v3d_submit_csd@job-perfmon.html - shard-rkl: NOTRUN -> [SKIP][285] ([fdo#109315]) +8 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#7711]) +8 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-1/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#7711]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#7711]) +6 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#2575]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-17/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * {igt@drm_mm@drm_mm@drm_test_mm_align32}: - shard-dg1: [TIMEOUT][292] ([i915#8628]) -> [PASS][293] +2 other tests pass [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@drm_mm@drm_mm@drm_test_mm_align32.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-15/igt@drm_mm@drm_mm@drm_test_mm_align32.html * igt@gem_eio@kms: - shard-dg1: [FAIL][294] ([i915#5784]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@gem_eio@kms.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][296] ([i915#2842]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@gem_exec_fair@basic-none@vecs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][298] ([i915#2842]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][300] ([i915#2842]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_gttfill@engines@vcs0: - shard-glk: [INCOMPLETE][302] -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk6/igt@gem_exec_gttfill@engines@vcs0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk9/igt@gem_exec_gttfill@engines@vcs0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][304] ([i915#3281]) -> [PASS][305] +6 other tests pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_pwrite@basic-random: - shard-rkl: [SKIP][306] ([i915#3282]) -> [PASS][307] +3 other tests pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@gem_pwrite@basic-random.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_pwrite@basic-random.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][308] ([i915#8411]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_workarounds@suspend-resume: - shard-dg2: [FAIL][310] ([fdo#103375]) -> [PASS][311] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-5/igt@gem_workarounds@suspend-resume.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][312] ([i915#2527]) -> [PASS][313] +2 other tests pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][314] ([i915#9559]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][316] ([i915#5138]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][318] ([i915#1845] / [i915#4098]) -> [PASS][319] +18 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: [FAIL][320] ([i915#3743]) -> [PASS][321] +1 other test pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * {igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs-cc}: - shard-rkl: [SKIP][322] ([i915#4098]) -> [PASS][323] +9 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][324] ([i915#2346]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][326] ([i915#2346]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-glk: [INCOMPLETE][328] ([i915#4839]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][330] ([i915#1849] / [i915#4098]) -> [PASS][331] +12 other tests pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: [INCOMPLETE][332] ([i915#180] / [i915#9392]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * {igt@kms_pm_rpm@dpms-lpsp}: - shard-dg1: [SKIP][334] ([i915#9519]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html * {igt@kms_pm_rpm@dpms-non-lpsp}: - shard-rkl: [SKIP][336] ([i915#9519]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * {igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_res_bpp_refresh_force_on}: - shard-tglu: [TIMEOUT][338] ([i915#8628]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-7/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_res_bpp_refresh_force_on.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-8/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_res_bpp_refresh_force_on.html * {igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp}: - shard-snb: [TIMEOUT][340] ([i915#8628]) -> [PASS][341] +2 other tests pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-snb4/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-snb4/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html - shard-mtlp: [TIMEOUT][342] ([i915#8628]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-mtlp-4/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-mtlp-7/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_24bpp.html * {igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create}: - shard-dg2: [TIMEOUT][344] ([i915#8628]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html * {igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state}: - shard-rkl: [TIMEOUT][346] ([i915#8628]) -> [PASS][347] +3 other tests pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][348] ([i915#4349]) -> [PASS][349] +3 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][350] ([i915#9323]) -> [SKIP][351] ([i915#7957]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][352] ([i915#7957]) -> [SKIP][353] ([i915#9323]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_ccs@suspend-resume.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@gem_ccs@suspend-resume.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][354] ([i915#2876]) -> [FAIL][355] ([i915#2842]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-10/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: [WARN][356] ([i915#2658]) -> [SKIP][357] ([i915#3282]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][358] ([i915#2532]) -> [SKIP][359] ([i915#2527]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][360] ([i915#2681]) -> [FAIL][361] ([i915#2681] / [i915#3591]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][362] ([i915#1845] / [i915#4098]) -> [SKIP][363] ([i915#9531]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][364] ([i915#5286]) -> [SKIP][365] ([i915#1845] / [i915#4098]) +3 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][366] ([i915#1845] / [i915#4098]) -> [SKIP][367] ([i915#5286]) +3 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][368] ([fdo#111614] / [i915#3638]) -> [SKIP][369] ([i915#1845] / [i915#4098]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][370] ([i915#1845] / [i915#4098]) -> [SKIP][371] ([fdo#111614] / [i915#3638]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: [SKIP][372] ([fdo#111615]) -> [SKIP][373] ([i915#1845] / [i915#4098]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][374] ([i915#1845] / [i915#4098]) -> [SKIP][375] ([fdo#110723]) +4 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][376] ([fdo#110723]) -> [SKIP][377] ([i915#1845] / [i915#4098]) +4 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][378] ([i915#1845] / [i915#4098]) -> [SKIP][379] ([i915#7118]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][380] ([i915#7118]) -> [SKIP][381] ([i915#1845] / [i915#4098]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_content_protection@type1.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: [SKIP][382] ([fdo#109279] / [i915#3359]) -> [SKIP][383] ([i915#1845] / [i915#4098]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][384] ([i915#3555]) -> [SKIP][385] ([i915#1845] / [i915#4098]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][386] ([i915#1845] / [i915#4098]) -> [SKIP][387] ([i915#3555]) +3 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_crc@cursor-random-32x10.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][388] ([i915#3359]) -> [SKIP][389] ([i915#1845] / [i915#4098]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][390] ([i915#1845] / [i915#4098]) -> [SKIP][391] ([i915#3359]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-rkl: [SKIP][392] ([i915#1845] / [i915#4098]) -> [SKIP][393] ([fdo#111825]) +5 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-rkl: [SKIP][394] ([i915#1845] / [i915#4098]) -> [SKIP][395] ([fdo#111767] / [fdo#111825]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][396] ([i915#1845] / [i915#4098]) -> [SKIP][397] ([i915#4103]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][398] ([fdo#111825]) -> [SKIP][399] ([i915#1845] / [i915#4098]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][400] ([i915#4098]) -> [SKIP][401] ([i915#3555] / [i915#3840]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_dsc@dsc-basic.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][402] ([i915#3555] / [i915#3840]) -> [SKIP][403] ([i915#1845] / [i915#4098]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][404] ([i915#3955]) -> [SKIP][405] ([fdo#110189] / [i915#3955]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][406] ([fdo#109285]) -> [SKIP][407] ([fdo#109285] / [i915#4098]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][408] ([fdo#111825] / [i915#1825]) -> [SKIP][409] ([i915#1849] / [i915#4098]) +21 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][410] ([i915#1849] / [i915#4098]) -> [SKIP][411] ([i915#3023]) +16 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][412] ([i915#1849] / [i915#4098]) -> [SKIP][413] ([fdo#111825] / [i915#1825]) +29 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][414] ([i915#3023]) -> [SKIP][415] ([i915#1849] / [i915#4098]) +19 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][416] ([i915#3555] / [i915#8228]) -> [SKIP][417] ([i915#4098]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][418] ([i915#3555] / [i915#8228]) -> [SKIP][419] ([i915#1845] / [i915#4098]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][420] ([i915#1845] / [i915#4098]) -> [SKIP][421] ([i915#5289]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][422] ([i915#5289]) -> [SKIP][423] ([i915#1845] / [i915#4098]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][424] ([fdo#111615] / [i915#5289]) -> [SKIP][425] ([i915#1845] / [i915#4098]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7585/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/874 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/int == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10181/index.html [-- Attachment #2: Type: text/html, Size: 120782 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-11-22 12:58 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-14 8:45 [igt-dev] [PATCH i-g-t v1 0/1] tests/kms_flip: add provision to ignore long HPDs Vinod Govindapillai 2023-11-14 8:45 ` [igt-dev] [PATCH i-g-t v1 1/1] tests/kms_flip: add possibility " Vinod Govindapillai 2023-11-22 8:20 ` Karthik B S 2023-11-14 9:22 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_flip: add provision " Patchwork 2023-11-14 9:31 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-11-14 15:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-11-22 12:58 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox