* [PATCH i-g-t 0/2] check for display before cursor size
@ 2025-04-07 14:45 Jakub Kolakowski
2025-04-07 14:45 ` [PATCH i-g-t 1/2] tests/kms_plane_cursor: " Jakub Kolakowski
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Jakub Kolakowski @ 2025-04-07 14:45 UTC (permalink / raw)
To: igt-dev
Cc: Jakub Kolakowski, Adam Miszczak, Lukasz Laguna,
Marcin Bernatowicz, Karthik B S
Currently in kms_cursor_edge_walk and kms_plane_cursor tests
igt_display_require() and igt_display_require_output() are
called after trying to get cursor width and height which leads to
fails on configurations that do not have display enabled.
Move igt_display_require() and igt_display_require_output() before
getting cursor width and height so instead tests will skip on
configurations without display.
For kms_cursor_edge_walk this also applies to igt_require_pipe_crc()
helper.
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Karthik B S <karthik.b.s@intel.com>
Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Jakub Kolakowski (2):
tests/kms_plane_cursor: check for display before cursor size
tests/kms_cursor_edge_walk: check for display and pipe CRC before
cursor size
tests/kms_cursor_edge_walk.c | 10 +++++-----
tests/kms_plane_cursor.c | 10 +++++-----
2 files changed, 10 insertions(+), 10 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t 1/2] tests/kms_plane_cursor: check for display before cursor size 2025-04-07 14:45 [PATCH i-g-t 0/2] check for display before cursor size Jakub Kolakowski @ 2025-04-07 14:45 ` Jakub Kolakowski 2025-04-08 5:42 ` Sharma, Swati2 2025-04-07 14:45 ` [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC " Jakub Kolakowski ` (3 subsequent siblings) 4 siblings, 1 reply; 12+ messages in thread From: Jakub Kolakowski @ 2025-04-07 14:45 UTC (permalink / raw) To: igt-dev; +Cc: Jakub Kolakowski Currently igt_display_require() and igt_display_require_output() is called after trying to get cursor width and height which leads to fails on configurations that do not have display enabled. Move igt_display_require() and igt_display_require_output() before getting cursor width and height so instead test will skip on configurations without display. Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com> --- tests/kms_plane_cursor.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c index fd9e00085..1b72515f7 100644 --- a/tests/kms_plane_cursor.c +++ b/tests/kms_plane_cursor.c @@ -307,17 +307,17 @@ igt_main data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + display = &data.display; + ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_WIDTH, &data.max_curw); igt_assert(ret == 0 || errno == EINVAL); ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_HEIGHT, &data.max_curh); igt_assert(ret == 0 || errno == EINVAL); kmstest_set_vt_graphics_mode(); - - igt_display_require(&data.display, data.drm_fd); - igt_require(data.display.is_atomic); - igt_display_require_output(&data.display); - display = &data.display; } for (i = 0; i < ARRAY_SIZE(tests); i++) { -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_plane_cursor: check for display before cursor size 2025-04-07 14:45 ` [PATCH i-g-t 1/2] tests/kms_plane_cursor: " Jakub Kolakowski @ 2025-04-08 5:42 ` Sharma, Swati2 2025-04-08 11:40 ` Sharma, Swati2 0 siblings, 1 reply; 12+ messages in thread From: Sharma, Swati2 @ 2025-04-08 5:42 UTC (permalink / raw) To: Jakub Kolakowski, igt-dev Hi Jakub, Patch LGTM. Please add "Closes" tag for the gitlab issue. On 07-04-2025 08:15 pm, Jakub Kolakowski wrote: > Currently igt_display_require() and igt_display_require_output() is > called after trying to get cursor width and height which leads to > fails on configurations that do not have display enabled. > Move igt_display_require() and igt_display_require_output() before > getting cursor width and height so instead test will skip on > configurations without display. > > Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com> > --- > tests/kms_plane_cursor.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c > index fd9e00085..1b72515f7 100644 > --- a/tests/kms_plane_cursor.c > +++ b/tests/kms_plane_cursor.c > @@ -307,17 +307,17 @@ igt_main > > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > + igt_display_require(&data.display, data.drm_fd); > + igt_require(data.display.is_atomic); > + igt_display_require_output(&data.display); > + display = &data.display; > + > ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_WIDTH, &data.max_curw); > igt_assert(ret == 0 || errno == EINVAL); > ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_HEIGHT, &data.max_curh); > igt_assert(ret == 0 || errno == EINVAL); > > kmstest_set_vt_graphics_mode(); > - > - igt_display_require(&data.display, data.drm_fd); > - igt_require(data.display.is_atomic); > - igt_display_require_output(&data.display); > - display = &data.display; > } > > for (i = 0; i < ARRAY_SIZE(tests); i++) { ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_plane_cursor: check for display before cursor size 2025-04-08 5:42 ` Sharma, Swati2 @ 2025-04-08 11:40 ` Sharma, Swati2 0 siblings, 0 replies; 12+ messages in thread From: Sharma, Swati2 @ 2025-04-08 11:40 UTC (permalink / raw) To: Jakub Kolakowski, igt-dev Patch LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 08-04-2025 11:12 am, Sharma, Swati2 wrote: > Hi Jakub, > > Patch LGTM. > Please add "Closes" tag for the gitlab issue. > > On 07-04-2025 08:15 pm, Jakub Kolakowski wrote: >> Currently igt_display_require() and igt_display_require_output() is >> called after trying to get cursor width and height which leads to >> fails on configurations that do not have display enabled. >> Move igt_display_require() and igt_display_require_output() before >> getting cursor width and height so instead test will skip on >> configurations without display. >> >> Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com> >> --- >> tests/kms_plane_cursor.c | 10 +++++----- >> 1 file changed, 5 insertions(+), 5 deletions(-) >> >> diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c >> index fd9e00085..1b72515f7 100644 >> --- a/tests/kms_plane_cursor.c >> +++ b/tests/kms_plane_cursor.c >> @@ -307,17 +307,17 @@ igt_main >> data.drm_fd = drm_open_driver_master(DRIVER_ANY); >> + igt_display_require(&data.display, data.drm_fd); >> + igt_require(data.display.is_atomic); >> + igt_display_require_output(&data.display); >> + display = &data.display; >> + >> ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_WIDTH, >> &data.max_curw); >> igt_assert(ret == 0 || errno == EINVAL); >> ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_HEIGHT, >> &data.max_curh); >> igt_assert(ret == 0 || errno == EINVAL); >> kmstest_set_vt_graphics_mode(); >> - >> - igt_display_require(&data.display, data.drm_fd); >> - igt_require(data.display.is_atomic); >> - igt_display_require_output(&data.display); >> - display = &data.display; >> } >> for (i = 0; i < ARRAY_SIZE(tests); i++) { > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC before cursor size 2025-04-07 14:45 [PATCH i-g-t 0/2] check for display before cursor size Jakub Kolakowski 2025-04-07 14:45 ` [PATCH i-g-t 1/2] tests/kms_plane_cursor: " Jakub Kolakowski @ 2025-04-07 14:45 ` Jakub Kolakowski 2025-04-08 5:42 ` Sharma, Swati2 2025-04-07 19:01 ` ✓ Xe.CI.BAT: success for check for display " Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 12+ messages in thread From: Jakub Kolakowski @ 2025-04-07 14:45 UTC (permalink / raw) To: igt-dev; +Cc: Jakub Kolakowski Currently igt_require_pipe_crc(), igt_display_require() and igt_display_require_output() is called after trying to get cursor width and height which leads to fails on configurations that do not have display enabled. Move igt_require_pipe_crc(), igt_display_require() and igt_display_require_output() before getting cursor width and height so instead test will skip on configurations without display. Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com> --- tests/kms_cursor_edge_walk.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c index 858d1da9b..27bee4482 100644 --- a/tests/kms_cursor_edge_walk.c +++ b/tests/kms_cursor_edge_walk.c @@ -361,6 +361,11 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_require_pipe_crc(data.drm_fd); + + igt_display_require(&data.display, data.drm_fd); + igt_display_require_output(&data.display); + if (is_intel_device(data.drm_fd)) data.devid = intel_get_drm_devid(data.drm_fd); @@ -372,11 +377,6 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) kmstest_set_vt_graphics_mode(); - igt_require_pipe_crc(data.drm_fd); - - igt_display_require(&data.display, data.drm_fd); - igt_display_require_output(&data.display); - /* Get active pipes. */ last_pipe = 0; for_each_pipe(&data.display, pipe) -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC before cursor size 2025-04-07 14:45 ` [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC " Jakub Kolakowski @ 2025-04-08 5:42 ` Sharma, Swati2 2025-04-08 11:40 ` Sharma, Swati2 0 siblings, 1 reply; 12+ messages in thread From: Sharma, Swati2 @ 2025-04-08 5:42 UTC (permalink / raw) To: Jakub Kolakowski, igt-dev Hi Jakub, Patch LGTM. Please add "Closes" tag for the gitlab issue. On 07-04-2025 08:15 pm, Jakub Kolakowski wrote: > Currently igt_require_pipe_crc(), igt_display_require() and > igt_display_require_output() is called after trying to get cursor > width and height which leads to fails on configurations that do > not have display enabled. > Move igt_require_pipe_crc(), igt_display_require() and > igt_display_require_output() before getting cursor width and > height so instead test will skip on configurations without > display. > > Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com> > --- > tests/kms_cursor_edge_walk.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c > index 858d1da9b..27bee4482 100644 > --- a/tests/kms_cursor_edge_walk.c > +++ b/tests/kms_cursor_edge_walk.c > @@ -361,6 +361,11 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > + igt_require_pipe_crc(data.drm_fd); > + > + igt_display_require(&data.display, data.drm_fd); > + igt_display_require_output(&data.display); > + > if (is_intel_device(data.drm_fd)) > data.devid = intel_get_drm_devid(data.drm_fd); > > @@ -372,11 +377,6 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > > kmstest_set_vt_graphics_mode(); > > - igt_require_pipe_crc(data.drm_fd); > - > - igt_display_require(&data.display, data.drm_fd); > - igt_display_require_output(&data.display); > - > /* Get active pipes. */ > last_pipe = 0; > for_each_pipe(&data.display, pipe) ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC before cursor size 2025-04-08 5:42 ` Sharma, Swati2 @ 2025-04-08 11:40 ` Sharma, Swati2 0 siblings, 0 replies; 12+ messages in thread From: Sharma, Swati2 @ 2025-04-08 11:40 UTC (permalink / raw) To: Jakub Kolakowski, igt-dev Patch LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 08-04-2025 11:12 am, Sharma, Swati2 wrote: > Hi Jakub, > > Patch LGTM. > Please add "Closes" tag for the gitlab issue. > > On 07-04-2025 08:15 pm, Jakub Kolakowski wrote: >> Currently igt_require_pipe_crc(), igt_display_require() and >> igt_display_require_output() is called after trying to get cursor >> width and height which leads to fails on configurations that do >> not have display enabled. >> Move igt_require_pipe_crc(), igt_display_require() and >> igt_display_require_output() before getting cursor width and >> height so instead test will skip on configurations without >> display. >> >> Signed-off-by: Jakub Kolakowski <jakub1.kolakowski@intel.com> >> --- >> tests/kms_cursor_edge_walk.c | 10 +++++----- >> 1 file changed, 5 insertions(+), 5 deletions(-) >> >> diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c >> index 858d1da9b..27bee4482 100644 >> --- a/tests/kms_cursor_edge_walk.c >> +++ b/tests/kms_cursor_edge_walk.c >> @@ -361,6 +361,11 @@ igt_main_args("", long_opts, help_str, >> opt_handler, &data) >> data.drm_fd = drm_open_driver_master(DRIVER_ANY); >> + igt_require_pipe_crc(data.drm_fd); >> + >> + igt_display_require(&data.display, data.drm_fd); >> + igt_display_require_output(&data.display); >> + >> if (is_intel_device(data.drm_fd)) >> data.devid = intel_get_drm_devid(data.drm_fd); >> @@ -372,11 +377,6 @@ igt_main_args("", long_opts, help_str, >> opt_handler, &data) >> kmstest_set_vt_graphics_mode(); >> - igt_require_pipe_crc(data.drm_fd); >> - >> - igt_display_require(&data.display, data.drm_fd); >> - igt_display_require_output(&data.display); >> - >> /* Get active pipes. */ >> last_pipe = 0; >> for_each_pipe(&data.display, pipe) > ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for check for display before cursor size 2025-04-07 14:45 [PATCH i-g-t 0/2] check for display before cursor size Jakub Kolakowski 2025-04-07 14:45 ` [PATCH i-g-t 1/2] tests/kms_plane_cursor: " Jakub Kolakowski 2025-04-07 14:45 ` [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC " Jakub Kolakowski @ 2025-04-07 19:01 ` Patchwork 2025-04-07 19:15 ` ✗ i915.CI.BAT: failure " Patchwork 2025-04-08 4:40 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-04-07 19:01 UTC (permalink / raw) To: Jakub Kolakowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2837 bytes --] == Series Details == Series: check for display before cursor size URL : https://patchwork.freedesktop.org/series/147337/ State : success == Summary == CI Bug Log - changes from XEIGT_8310_BAT -> XEIGTPW_12932_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12932_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_gt_freq@freq_fixed_idle: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2464]) +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/bat-adlp-vf/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_mmap@vram: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#1008]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/bat-adlp-vf/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: NOTRUN -> [ABORT][3] ([Intel XE#3970]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-adlp-vf: NOTRUN -> [SKIP][4] ([Intel XE#2468]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#3342]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/bat-adlp-vf/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@xe_exec_balancer@twice-virtual-userptr-rebind: - bat-adlp-vf: [ABORT][6] ([Intel XE#3970]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-userptr-rebind.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-userptr-rebind.html [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#2464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2464 [Intel XE#2468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8310 -> IGTPW_12932 IGTPW_12932: 12932 IGT_8310: 4b22256d016daa2f133092b62c03230ff121a3fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2911-a33da369e8cde6c7208381a592866cd61f1ce188: a33da369e8cde6c7208381a592866cd61f1ce188 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/index.html [-- Attachment #2: Type: text/html, Size: 3601 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.BAT: failure for check for display before cursor size 2025-04-07 14:45 [PATCH i-g-t 0/2] check for display before cursor size Jakub Kolakowski ` (2 preceding siblings ...) 2025-04-07 19:01 ` ✓ Xe.CI.BAT: success for check for display " Patchwork @ 2025-04-07 19:15 ` Patchwork 2025-04-11 18:16 ` Kolakowski, Jakub1 2025-04-08 4:40 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2025-04-07 19:15 UTC (permalink / raw) To: Jakub Kolakowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2902 bytes --] == Series Details == Series: check for display before cursor size URL : https://patchwork.freedesktop.org/series/147337/ State : failure == Summary == CI Bug Log - changes from IGT_8310 -> IGTPW_12932 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12932 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12932, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12932: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gem: - bat-arlh-2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-arlh-2/igt@i915_selftest@live@gem.html #### Warnings #### * igt@i915_selftest@live: - bat-arlh-2: [INCOMPLETE][2] ([i915#13971]) -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8310/bat-arlh-2/igt@i915_selftest@live.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-arlh-2/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_12932 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-mtlp-9: [PASS][4] -> [DMESG-WARN][5] ([i915#13494]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8310/bat-mtlp-9/igt@i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-mtlp-9/igt@i915_module_load@load.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - bat-arlh-2: [INCOMPLETE][6] ([i915#13971]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8310/bat-arlh-2/igt@i915_selftest@live@gt_pm.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-arlh-2/igt@i915_selftest@live@gt_pm.html [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13971]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13971 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8310 -> IGTPW_12932 CI-20190529: 20190529 CI_DRM_16377: a33da369e8cde6c7208381a592866cd61f1ce188 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12932: 12932 IGT_8310: 4b22256d016daa2f133092b62c03230ff121a3fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/index.html [-- Attachment #2: Type: text/html, Size: 3656 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: ✗ i915.CI.BAT: failure for check for display before cursor size 2025-04-07 19:15 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-04-11 18:16 ` Kolakowski, Jakub1 0 siblings, 0 replies; 12+ messages in thread From: Kolakowski, Jakub1 @ 2025-04-11 18:16 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 3004 bytes --] possible regressions not related to kms_plane_cursor or kms_cursor_edge_walk where I changed the code From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Monday, April 7, 2025 9:15 PM To: Kolakowski, Jakub1 <jakub1.kolakowski@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ i915.CI.BAT: failure for check for display before cursor size Patch Details Series: check for display before cursor size URL: https://patchwork.freedesktop.org/series/147337/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/index.html CI Bug Log - changes from IGT_8310 -> IGTPW_12932 Summary FAILURE Serious unknown changes coming with IGTPW_12932 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12932, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/index.html Participating hosts (44 -> 43) Missing (1): fi-snb-2520m Possible new issues Here are the unknown changes that may have been introduced in IGTPW_12932: IGT changes Possible regressions * igt@i915_selftest@live@gem: * bat-arlh-2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-arlh-2/igt@i915_selftest@live@gem.html> Warnings * igt@i915_selftest@live: * bat-arlh-2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8310/bat-arlh-2/igt@i915_selftest@live.html> (i915#13971<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13971>) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-arlh-2/igt@i915_selftest@live.html> Known issues Here are the changes found in IGTPW_12932 that come from known issues: IGT changes Issues hit * igt@i915_module_load@load: * bat-mtlp-9: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8310/bat-mtlp-9/igt@i915_module_load@load.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-mtlp-9/igt@i915_module_load@load.html> (i915#13494<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494>) Possible fixes * igt@i915_selftest@live@gt_pm: * bat-arlh-2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8310/bat-arlh-2/igt@i915_selftest@live@gt_pm.html> (i915#13971<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13971>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12932/bat-arlh-2/igt@i915_selftest@live@gt_pm.html> Build changes * CI: CI-20190529 -> None * IGT: IGT_8310 -> IGTPW_12932 CI-20190529: 20190529 CI_DRM_16377: a33da369e8cde6c7208381a592866cd61f1ce188 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12932: 12932 IGT_8310: 4b22256d016daa2f133092b62c03230ff121a3fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 20649 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.Full: failure for check for display before cursor size 2025-04-07 14:45 [PATCH i-g-t 0/2] check for display before cursor size Jakub Kolakowski ` (3 preceding siblings ...) 2025-04-07 19:15 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-04-08 4:40 ` Patchwork 2025-04-11 18:14 ` Kolakowski, Jakub1 4 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2025-04-08 4:40 UTC (permalink / raw) To: Jakub Kolakowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 81410 bytes --] == Series Details == Series: check for display before cursor size URL : https://patchwork.freedesktop.org/series/147337/ State : failure == Summary == CI Bug Log - changes from XEIGT_8310_FULL -> XEIGTPW_12932_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12932_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12932_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12932_FULL: ### IGT changes ### #### Possible regressions #### * igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries: - shard-lnl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-8/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_plane_lowres@tiling-4@pipe-b-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-b-dp-2.html * igt@kms_pm_dc@dc5-dpms: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_pm_dc@dc5-dpms.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_pm_dc@dc5-dpms.html * igt@xe_exec_reset@gt-reset-stress: - shard-bmg: [PASS][8] -> [DMESG-WARN][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_exec_reset@gt-reset-stress.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_exec_reset@gt-reset-stress.html New tests --------- New tests have been introduced between XEIGT_8310_FULL and XEIGTPW_12932_FULL: ### New IGT tests (14) ### * igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.34] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-hdmi-a2-dp2: - Statuses : 1 pass(s) - Exec time: [1.20] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ac-hdmi-a2-dp2: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ad-hdmi-a2-dp2: - Statuses : 1 pass(s) - Exec time: [1.12] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@bc-hdmi-a2-dp2: - Statuses : 1 pass(s) - Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@bd-hdmi-a2-dp2: - Statuses : 1 pass(s) - Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@cd-hdmi-a2-dp2: - Statuses : 1 pass(s) - Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [1.18] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@ac-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@ad-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@bc-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@bd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@cd-hdmi-a6-dp4: - Statuses : 1 pass(s) - Exec time: [1.15] s Known issues ------------ Here are the changes found in XEIGTPW_12932_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1125]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2385]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#619]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#610]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1477]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +13 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1512]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2191]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +55 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +13 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#3113]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][35] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +25 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#787]) +215 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4417]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2325]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +12 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2341]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +4 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2321]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2291]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html - shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#309]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-436/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#309]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#323]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#4302]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([i915#3804]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4354]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4356]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#4331]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@kms_dp_linktrain_fallback@dp-fallback.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2244]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2244]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4156]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1135]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +4 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][72] -> [FAIL][73] ([Intel XE#301] / [Intel XE#3321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#3321]) +2 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#310]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2316]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#310]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-466/igt@kms_flip@2x-plain-flip-fb-recreate.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1421]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#886]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-dg2-set2: NOTRUN -> [FAIL][84] ([Intel XE#301]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@d-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#301] / [Intel XE#3321]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401] / [Intel XE#1745]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#455]) +17 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2311]) +22 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#651]) +33 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4141]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#656]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +12 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2312]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#656]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#653]) +32 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2313]) +22 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#3374] / [Intel XE#3544]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1503]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1503]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#4328]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4090]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2486]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#4329]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][110] -> [FAIL][111] ([Intel XE#616]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2493]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +9 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#870]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [PASS][118] -> [SKIP][119] ([Intel XE#836]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#836]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +9 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4608]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1122]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2387]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#4609]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1406]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-6/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-primary-render: - shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#3924]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-6/igt@kms_psr@psr2-primary-render.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2939]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2414]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1127]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1127]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2330]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#3414]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#3414] / [Intel XE#3904]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2426]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#330]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#4459]) +1 other test fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@negative-basic: - shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#1499]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_vrr@negative-basic.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1499]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1091] / [Intel XE#2849]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1126]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eu_stall@invalid-sampling-rate: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#4497]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_eu_stall@invalid-sampling-rate.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@discovery-race-sigint: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905] / [Intel XE#4259]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_eudebug@discovery-race-sigint.html - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2905] / [Intel XE#4259]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_eudebug@sysfs-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2905]) +12 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_eudebug@sysfs-toggle.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#2905]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#4577]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#4577]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_evict@evict-small-external-cm: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#688]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@xe_evict@evict-small-external-cm.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1392]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1392]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2322]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-rebind: - shard-dg2-set2: [PASS][164] -> [SKIP][165] ([Intel XE#1392]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@xe_exec_basic@multigpu-once-rebind.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#288]) +28 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#255]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: [PASS][168] -> [FAIL][169] ([Intel XE#1999]) +2 other tests fail [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2457]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-bmg: ([PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191]) -> ([PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [SKIP][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213]) ([Intel XE#2457]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-3/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-3/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-3/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@load.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#2838] / [Intel XE#979]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][217] ([Intel XE#1173]) +2 other tests fail [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#2284]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#579]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@all-fn-engine-activity-load: - shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#4650]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_pmu@all-fn-engine-activity-load.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#4650]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#944]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@xe_query@multigpu-query-engines.html - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#944]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][226] ([Intel XE#944]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: NOTRUN -> [SKIP][227] ([Intel XE#4130]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#4130]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_scheduling@equal-throughput: - shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#4351]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][230] ([Intel XE#911]) -> [PASS][231] +1 other test pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][232] ([Intel XE#3862]) -> [PASS][233] +2 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][234] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [INCOMPLETE][236] ([Intel XE#3226]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-set2: [SKIP][238] ([Intel XE#309]) -> [PASS][239] +5 other tests pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][240] ([Intel XE#1340]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][242] ([Intel XE#4294]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-dg2-set2: [SKIP][244] ([Intel XE#310]) -> [PASS][245] +5 other tests pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][246] ([Intel XE#2316]) -> [PASS][247] +2 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-dg2-set2: [SKIP][248] -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][250] ([Intel XE#3321]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2-set2: [INCOMPLETE][252] ([Intel XE#2049]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@kms_flip@flip-vs-absolute-wf_vblank.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1: - shard-lnl: [FAIL][254] ([Intel XE#886]) -> [PASS][255] +3 other tests pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][256] ([Intel XE#656]) -> [PASS][257] +3 other tests pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][258] ([Intel XE#1503]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_hdr@invalid-hdr.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][260] ([Intel XE#3012]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-set2: [SKIP][262] ([Intel XE#4328]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [DMESG-WARN][264] ([Intel XE#4212]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [ABORT][266] -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][268] ([Intel XE#2883]) -> [PASS][269] +2 other tests pass [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_setmode@basic.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_setmode@basic.html - shard-dg2-set2: [FAIL][270] ([Intel XE#2883]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@kms_setmode@basic.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_setmode@basic.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [INCOMPLETE][272] -> [PASS][273] +1 other test pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][274] ([Intel XE#1392]) -> [PASS][275] +5 other tests pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_pm@s4-mocs: - shard-lnl: [ABORT][276] ([Intel XE#1794]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-2/igt@xe_pm@s4-mocs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@xe_pm@s4-mocs.html #### Warnings #### * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][278] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][279] ([Intel XE#787]) +9 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][280] ([Intel XE#787]) -> [SKIP][281] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][282] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][283] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][284] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][285] ([Intel XE#1727] / [Intel XE#3113]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@atomic: - shard-bmg: [INCOMPLETE][286] -> [SKIP][287] ([Intel XE#2341]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@kms_content_protection@atomic.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][288] ([Intel XE#2341]) -> [FAIL][289] ([Intel XE#1178]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_content_protection@legacy.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_content_protection@legacy.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][290] ([Intel XE#2311]) -> [SKIP][291] ([Intel XE#2312]) +9 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][292] ([Intel XE#2312]) -> [SKIP][293] ([Intel XE#2311]) +6 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][294] ([Intel XE#4141]) -> [SKIP][295] ([Intel XE#2312]) +4 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][296] ([Intel XE#2312]) -> [SKIP][297] ([Intel XE#4141]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][298] ([Intel XE#656]) -> [SKIP][299] ([Intel XE#651]) +11 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][300] ([Intel XE#651]) -> [SKIP][301] ([Intel XE#656]) +9 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][302] ([Intel XE#2312]) -> [SKIP][303] ([Intel XE#2313]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][304] ([Intel XE#2313]) -> [SKIP][305] ([Intel XE#2312]) +8 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][306] ([Intel XE#656]) -> [SKIP][307] ([Intel XE#653]) +13 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][308] ([Intel XE#653]) -> [SKIP][309] ([Intel XE#656]) +10 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@xe_peer2peer@write: - shard-dg2-set2: [SKIP][310] ([Intel XE#1061]) -> [FAIL][311] ([Intel XE#1173]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@xe_peer2peer@write.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@xe_peer2peer@write.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4577 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8310 -> IGTPW_12932 IGTPW_12932: 12932 IGT_8310: 4b22256d016daa2f133092b62c03230ff121a3fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2911-a33da369e8cde6c7208381a592866cd61f1ce188: a33da369e8cde6c7208381a592866cd61f1ce188 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/index.html [-- Attachment #2: Type: text/html, Size: 96206 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: ✗ Xe.CI.Full: failure for check for display before cursor size 2025-04-08 4:40 ` ✗ Xe.CI.Full: " Patchwork @ 2025-04-11 18:14 ` Kolakowski, Jakub1 0 siblings, 0 replies; 12+ messages in thread From: Kolakowski, Jakub1 @ 2025-04-11 18:14 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 80462 bytes --] possible regressions not related to kms_plane_cursor or kms_cursor_edge_walk where I changed the code From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Tuesday, April 8, 2025 6:40 AM To: Kolakowski, Jakub1 <jakub1.kolakowski@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Xe.CI.Full: failure for check for display before cursor size Patch Details Series: check for display before cursor size URL: https://patchwork.freedesktop.org/series/147337/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/index.html CI Bug Log - changes from XEIGT_8310_FULL -> XEIGTPW_12932_FULL Summary FAILURE Serious unknown changes coming with XEIGTPW_12932_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12932_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) Missing (1): shard-adlp Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12932_FULL: IGT changes Possible regressions * igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-8/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries.html> * igt@kms_flip@2x-flip-vs-dpms-on-nop: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html> * igt@kms_plane_lowres@tiling-4@pipe-b-dp-2: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-b-dp-2.html> +1 other test incomplete * igt@kms_pm_dc@dc5-dpms: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_pm_dc@dc5-dpms.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_pm_dc@dc5-dpms.html> * igt@xe_exec_reset@gt-reset-stress: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_exec_reset@gt-reset-stress.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_exec_reset@gt-reset-stress.html> New tests New tests have been introduced between XEIGT_8310_FULL and XEIGTPW_12932_FULL: New IGT tests (14) * igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.71] s * igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.34] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-hdmi-a2-dp2: * Statuses : 1 pass(s) * Exec time: [1.20] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ac-hdmi-a2-dp2: * Statuses : 1 pass(s) * Exec time: [1.15] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ad-hdmi-a2-dp2: * Statuses : 1 pass(s) * Exec time: [1.12] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@bc-hdmi-a2-dp2: * Statuses : 1 pass(s) * Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@bd-hdmi-a2-dp2: * Statuses : 1 pass(s) * Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@cd-hdmi-a2-dp2: * Statuses : 1 pass(s) * Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [1.18] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@ac-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@ad-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@bc-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [1.14] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@bd-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-dpms-on-nop@cd-hdmi-a6-dp4: * Statuses : 1 pass(s) * Exec time: [1.15] s Known issues Here are the changes found in XEIGTPW_12932_FULL that come from known issues: IGT changes Issues hit * igt@intel_hwmon@hwmon-write: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>) * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (Intel XE#2385<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385>) * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +1 other test skip * igt@kms_big_fb@linear-8bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) * igt@kms_big_fb@x-tiled-8bpp-rotate-270: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +3 other tests skip * igt@kms_big_fb@y-tiled-addfb: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#619<https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>) * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) * igt@kms_big_fb@y-tiled-addfb-size-overflow: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +4 other tests skip * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#1477<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +3 other tests skip * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +13 other tests skip * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +2 other tests skip * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip * igt@kms_bw@linear-tiling-3-displays-2160x1440p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) * igt@kms_bw@linear-tiling-3-displays-3840x2160p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) * igt@kms_bw@linear-tiling-4-displays-2560x1440p: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +4 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +55 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669> / Intel XE#3433<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3 other tests skip * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +13 other tests skip * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html> (Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113>) * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212> / Intel XE#4522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522>) * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +25 other tests skip * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +215 other tests skip * igt@kms_cdclk@mode-transition@pipe-a-dp-2: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html> (Intel XE#4417<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417>) +3 other tests skip * igt@kms_chamelium_color@ctm-0-25: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) * igt@kms_chamelium_color@ctm-0-50: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +1 other test skip * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests skip * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +12 other tests skip * igt@kms_chamelium_frames@dp-crc-single: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_chamelium_frames@dp-crc-single.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +6 other tests skip * igt@kms_content_protection@content-type-change: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_content_protection@content-type-change.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) * igt@kms_content_protection@mei-interface: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_content_protection@mei-interface.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) * igt@kms_content_protection@srm: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_content_protection@srm.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +4 other tests fail * igt@kms_content_protection@uevent@pipe-a-dp-4: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_content_protection@uevent@pipe-a-dp-4.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) * igt@kms_cursor_crc@cursor-onscreen-512x170: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) +1 other test skip * igt@kms_cursor_crc@cursor-random-128x42: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@kms_cursor_crc@cursor-random-128x42.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +1 other test skip * igt@kms_cursor_crc@cursor-random-512x170: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +2 other tests skip * igt@kms_cursor_crc@cursor-sliding-256x85: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +1 other test skip * igt@kms_cursor_crc@cursor-sliding-512x170: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-436/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +1 other test skip * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +3 other tests skip * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) * igt@kms_display_modes@extended-mode-basic: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#4302<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dp_link_training@uhbr-sst: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html> (Intel XE#4354<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354>) +1 other test skip * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_dp_link_training@uhbr-sst.html> (Intel XE#4356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356>) * igt@kms_dp_linktrain_fallback@dp-fallback: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@kms_dp_linktrain_fallback@dp-fallback.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html> (Intel XE#4331<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331>) * igt@kms_dsc@dsc-fractional-bpp-with-bpc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) * igt@kms_dsc@dsc-with-output-formats-with-bpc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) * igt@kms_fbcon_fbt@fbc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html> (Intel XE#4156<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156>) * igt@kms_feature_discovery@psr1: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_feature_discovery@psr1.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +4 other tests fail * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +2 other tests fail * igt@kms_flip@2x-flip-vs-modeset: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) * igt@kms_flip@2x-modeset-vs-vblank-race: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +6 other tests skip * igt@kms_flip@2x-plain-flip-fb-recreate: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-466/igt@kms_flip@2x-plain-flip-fb-recreate.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) +4 other tests skip * igt@kms_flip@2x-plain-flip-ts-check: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +4 other tests skip * igt@kms_flip@flip-vs-absolute-wf_vblank: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +1 other test fail * igt@kms_flip@flip-vs-expired-vblank@d-dp2: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +17 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +22 other tests skip * igt@kms_frontbuffer_tracking@drrs-suspend: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +33 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +3 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +5 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +12 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +32 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +22 other tests skip * igt@kms_hdr@brightness-with-hdr: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>) * igt@kms_hdr@static-swap: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_hdr@static-swap.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) * igt@kms_hdr@static-toggle-suspend: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_hdr@static-toggle-suspend.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) * igt@kms_joiner@basic-force-big-joiner: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html> (Intel XE#4328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328>) * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (Intel XE#4090<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090>) * igt@kms_panel_fitting@atomic-fastset: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>) * igt@kms_pipe_stress@stress-xrgb8888-ytiled: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html> (Intel XE#4329<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329>) * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) +1 other test fail * igt@kms_plane_multiple@2x-tiling-yf: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>) +2 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +3 other tests skip * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +2 other tests skip * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +9 other tests skip * igt@kms_pm_backlight@fade-with-suspend: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) * igt@kms_pm_rpm@modeset-lpsp: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) +1 other test skip * igt@kms_pm_rpm@modeset-non-lpsp: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +9 other tests skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html> (Intel XE#4608<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608>) +3 other tests skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893> / Intel XE#4608<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608>) +1 other test skip * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +6 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) * igt@kms_psr2_su@page_flip-xrgb8888: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>) * igt@kms_psr@fbc-psr-sprite-render: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +17 other tests skip * igt@kms_psr@fbc-psr2-cursor-plane-move: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +9 other tests skip * igt@kms_psr@fbc-psr2-no-drrs@edp-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html> (Intel XE#4609<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609>) * igt@kms_psr@pr-primary-blt: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-6/igt@kms_psr@pr-primary-blt.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +1 other test skip * igt@kms_psr@psr2-primary-render: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-6/igt@kms_psr@psr2-primary-render.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#3924<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924>) +1 other test fail * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (Intel XE#2939<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939>) * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#2414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414>) * igt@kms_rotation_crc@primary-rotation-90: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1 other test skip * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) * igt@kms_rotation_crc@sprite-rotation-270: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>) * igt@kms_tv_load_detect@load-detect: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>) * igt@kms_vrr@cmrr@pipe-a-edp-1: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html> (Intel XE#4459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459>) +1 other test fail * igt@kms_vrr@negative-basic: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_vrr@negative-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_vrr@negative-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) * igt@kms_vrr@seamless-rr-switch-virtual: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) * igt@xe_compute_preempt@compute-preempt: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip * igt@xe_copy_basic@mem-set-linear-0xfffe: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) +1 other test skip * igt@xe_eu_stall@invalid-sampling-rate: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_eu_stall@invalid-sampling-rate.html> (Intel XE#4497<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497>) * igt@xe_eudebug@basic-vm-bind-metadata-discovery: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +7 other tests skip * igt@xe_eudebug@discovery-race-sigint: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_eudebug@discovery-race-sigint.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905> / Intel XE#4259<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259>) * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@xe_eudebug@discovery-race-sigint.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905> / Intel XE#4259<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259>) * igt@xe_eudebug@sysfs-toggle: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_eudebug@sysfs-toggle.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +12 other tests skip * igt@xe_eudebug_online@interrupt-other-debuggable: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-5/igt@xe_eudebug_online@interrupt-other-debuggable.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +2 other tests skip * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html> (Intel XE#4577<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4577>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html> (Intel XE#4577<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4577>) * igt@xe_evict@evict-small-external-cm: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@xe_evict@evict-small-external-cm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +1 other test skip * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) * igt@xe_exec_basic@multigpu-once-bindexecqueue: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +4 other tests skip * igt@xe_exec_basic@multigpu-once-rebind: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@xe_exec_basic@multigpu-once-rebind.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +3 other tests skip * igt@xe_exec_fault_mode@twice-invalid-fault: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +28 other tests skip * igt@xe_huc_copy@huc_copy: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_huc_copy@huc_copy.html> (Intel XE#255<https://gitlab.freedesktop.org/drm/xe/kernel/issues/255>) * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> (Intel XE#1999<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999>) +2 other tests fail * igt@xe_module_load@force-load: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@force-load.html> (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) * igt@xe_module_load@load: * shard-bmg: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@xe_module_load@load.html>) (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) * igt@xe_oa@closed-fd-and-unmapped-access: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +5 other tests skip * igt@xe_oa@syncs-ufence-wait-cfg: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_oa@syncs-ufence-wait-cfg.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573> / Intel XE#4501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501>) * igt@xe_pat@pat-index-xehpc: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html> (Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838> / Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) +2 other tests fail * igt@xe_pm@d3cold-mocs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) * igt@xe_pm@s2idle-d3cold-basic-exec: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip * igt@xe_pm@s4-d3cold-basic-exec: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip * igt@xe_pm@vram-d3cold-threshold: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>) * igt@xe_pmu@all-fn-engine-activity-load: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@xe_pmu@all-fn-engine-activity-load.html> (Intel XE#4650<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650>) * igt@xe_pmu@fn-engine-activity-sched-if-idle: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html> (Intel XE#4650<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650>) * igt@xe_query@multigpu-query-engines: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-4/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) * igt@xe_query@multigpu-query-uc-fw-version-huc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests skip * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html> (Intel XE#4130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>) +3 other tests skip * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html> (Intel XE#4130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>) * igt@xe_sriov_scheduling@equal-throughput: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput.html> (Intel XE#4351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351>) Possible fixes * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> +1 other test pass * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html> (Intel XE#3862<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html> +2 other tests pass * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#3124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124> / Intel XE#4345<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> (Intel XE#3226<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> +5 other tests pass * igt@kms_dither@fb-8bpc-vs-panel-6bpc: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> * igt@kms_dp_linktrain_fallback@dp-fallback: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html> (Intel XE#4294<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html> * igt@kms_flip@2x-blocking-absolute-wf_vblank: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_flip@2x-blocking-absolute-wf_vblank.html> +5 other tests pass * igt@kms_flip@2x-blocking-wf_vblank: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html> +2 other tests pass * igt@kms_flip@2x-flip-vs-dpms-on-nop: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-on-nop.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-on-nop.html> * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html> * igt@kms_flip@flip-vs-absolute-wf_vblank: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@kms_flip@flip-vs-absolute-wf_vblank.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_flip@flip-vs-absolute-wf_vblank.html> * igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html> +3 other tests pass * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html> +3 other tests pass * igt@kms_hdr@invalid-hdr: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_hdr@invalid-hdr.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_hdr@invalid-hdr.html> * igt@kms_joiner@basic-force-big-joiner: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html> * igt@kms_joiner@invalid-modeset-force-big-joiner: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#4328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-466/igt@kms_joiner@invalid-modeset-force-big-joiner.html> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html> (Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: * shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html> +1 other test pass * igt@kms_setmode@basic: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_setmode@basic.html> +2 other tests pass * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_setmode@basic.html> * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html> +1 other test pass * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html> +5 other tests pass * igt@xe_pm@s4-mocs: * shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-lnl-2/igt@xe_pm@s4-mocs.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-lnl-3/igt@xe_pm@s4-mocs.html> Warnings * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +9 other tests skip * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +4 other tests skip * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#3124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124> / Intel XE#4345<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212> / Intel XE#4345<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345> / Intel XE#4522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522>) * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212> / Intel XE#4522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113>) * igt@kms_content_protection@atomic: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-2/igt@kms_content_protection@atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_content_protection@atomic.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) * igt@kms_content_protection@legacy: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_content_protection@legacy.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-3/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9 other tests skip * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +6 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +4 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +4 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +11 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +9 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +4 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +13 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +10 other tests skip * igt@xe_peer2peer@write: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8310/shard-dg2-432/igt@xe_peer2peer@write.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12932/shard-dg2-436/igt@xe_peer2peer@write.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) Build changes * IGT: IGT_8310 -> IGTPW_12932 IGTPW_12932: 12932 IGT_8310: 4b22256d016daa2f133092b62c03230ff121a3fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2911-a33da369e8cde6c7208381a592866cd61f1ce188: a33da369e8cde6c7208381a592866cd61f1ce188 [-- Attachment #2: Type: text/html, Size: 149244 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-04-11 18:16 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-04-07 14:45 [PATCH i-g-t 0/2] check for display before cursor size Jakub Kolakowski 2025-04-07 14:45 ` [PATCH i-g-t 1/2] tests/kms_plane_cursor: " Jakub Kolakowski 2025-04-08 5:42 ` Sharma, Swati2 2025-04-08 11:40 ` Sharma, Swati2 2025-04-07 14:45 ` [PATCH i-g-t 2/2] tests/kms_cursor_edge_walk: check for display and pipe CRC " Jakub Kolakowski 2025-04-08 5:42 ` Sharma, Swati2 2025-04-08 11:40 ` Sharma, Swati2 2025-04-07 19:01 ` ✓ Xe.CI.BAT: success for check for display " Patchwork 2025-04-07 19:15 ` ✗ i915.CI.BAT: failure " Patchwork 2025-04-11 18:16 ` Kolakowski, Jakub1 2025-04-08 4:40 ` ✗ Xe.CI.Full: " Patchwork 2025-04-11 18:14 ` Kolakowski, Jakub1
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox