* [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources
@ 2025-01-31 19:16 Naladala Ramanaidu
2025-01-31 19:16 ` [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup Naladala Ramanaidu
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Naladala Ramanaidu @ 2025-01-31 19:16 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
Add necessary checks to ensure proper cleanup CRC.
Naladala Ramanaidu (2):
tests/kms_atomic: Add necessary checks to ensure proper cleanup
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 168 +-------------
tests/intel-ci/xe-fast-feedback.testlist | 273 +----------------------
tests/kms_atomic.c | 10 +
3 files changed, 12 insertions(+), 439 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu @ 2025-01-31 19:16 ` Naladala Ramanaidu 2025-02-07 6:35 ` Samala, Pranay 2025-02-09 18:52 ` Sharma, Swati2 2025-01-31 19:16 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu ` (4 subsequent siblings) 5 siblings, 2 replies; 9+ messages in thread From: Naladala Ramanaidu @ 2025-01-31 19:16 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu Stop CRC and free up CRC resources to prevent memory leaks. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/kms_atomic.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c index 489b0d709..8fb26a079 100644 --- a/tests/kms_atomic.c +++ b/tests/kms_atomic.c @@ -506,6 +506,10 @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, int n_p DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, 0.0, 0.0, 1.0, &fb_lower); + if (!fb_id_lower) { + igt_pipe_crc_stop(pipe_crc); + igt_pipe_crc_free(pipe_crc); + } igt_assert(fb_id_lower); fb_id_upper = igt_create_color_fb(data->drm_fd, @@ -513,6 +517,10 @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, int n_p DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, 1.0, 1.0, 0.0, &fb_upper); + if (!fb_id_upper) { + igt_pipe_crc_stop(pipe_crc); + igt_pipe_crc_free(pipe_crc); + } igt_assert(fb_id_upper); /* @@ -560,6 +568,8 @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, int n_p igt_plane_set_fb(plane_upper, NULL); } + igt_pipe_crc_stop(pipe_crc); + igt_pipe_crc_free(pipe_crc); igt_remove_fb(data->drm_fd, &fb_ref); igt_remove_fb(data->drm_fd, &fb_lower); igt_remove_fb(data->drm_fd, &fb_upper); -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup 2025-01-31 19:16 ` [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup Naladala Ramanaidu @ 2025-02-07 6:35 ` Samala, Pranay 2025-02-09 18:52 ` Sharma, Swati2 1 sibling, 0 replies; 9+ messages in thread From: Samala, Pranay @ 2025-02-07 6:35 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org Cc: Sharma, Swati2, Naladala, Ramanaidu > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Naladala > Ramanaidu > Sent: Saturday, February 1, 2025 12:46 AM > To: igt-dev@lists.freedesktop.org > Cc: Sharma, Swati2 <swati2.sharma@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure > proper cleanup > > Stop CRC and free up CRC resources to prevent memory leaks. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> LGTM. Reviewed-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_atomic.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c index > 489b0d709..8fb26a079 100644 > --- a/tests/kms_atomic.c > +++ b/tests/kms_atomic.c > @@ -506,6 +506,10 @@ plane_immutable_zpos(data_t *data, igt_output_t > *output, enum pipe pipe, int n_p > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 0.0, 0.0, 1.0, &fb_lower); > + if (!fb_id_lower) { > + igt_pipe_crc_stop(pipe_crc); > + igt_pipe_crc_free(pipe_crc); > + } > igt_assert(fb_id_lower); > > fb_id_upper = igt_create_color_fb(data->drm_fd, @@ -513,6 +517,10 > @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, > int n_p > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 1.0, 1.0, 0.0, &fb_upper); > + if (!fb_id_upper) { > + igt_pipe_crc_stop(pipe_crc); > + igt_pipe_crc_free(pipe_crc); > + } > igt_assert(fb_id_upper); > > /* > @@ -560,6 +568,8 @@ plane_immutable_zpos(data_t *data, igt_output_t > *output, enum pipe pipe, int n_p > igt_plane_set_fb(plane_upper, NULL); > } > > + igt_pipe_crc_stop(pipe_crc); > + igt_pipe_crc_free(pipe_crc); > igt_remove_fb(data->drm_fd, &fb_ref); > igt_remove_fb(data->drm_fd, &fb_lower); > igt_remove_fb(data->drm_fd, &fb_upper); > -- > 2.25.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup 2025-01-31 19:16 ` [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup Naladala Ramanaidu 2025-02-07 6:35 ` Samala, Pranay @ 2025-02-09 18:52 ` Sharma, Swati2 1 sibling, 0 replies; 9+ messages in thread From: Sharma, Swati2 @ 2025-02-09 18:52 UTC (permalink / raw) To: Naladala Ramanaidu, igt-dev Hi Ramanaidu, Patch LGTM. Reviewed-by: Swati Sharma <swati2.sharma@intel.com> If possible add gitlab# in closes tag. On 01-02-2025 12:46 am, Naladala Ramanaidu wrote: > Stop CRC and free up CRC resources to prevent memory leaks. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_atomic.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c > index 489b0d709..8fb26a079 100644 > --- a/tests/kms_atomic.c > +++ b/tests/kms_atomic.c > @@ -506,6 +506,10 @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, int n_p > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 0.0, 0.0, 1.0, &fb_lower); > + if (!fb_id_lower) { > + igt_pipe_crc_stop(pipe_crc); > + igt_pipe_crc_free(pipe_crc); > + } > igt_assert(fb_id_lower); > > fb_id_upper = igt_create_color_fb(data->drm_fd, > @@ -513,6 +517,10 @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, int n_p > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 1.0, 1.0, 0.0, &fb_upper); > + if (!fb_id_upper) { > + igt_pipe_crc_stop(pipe_crc); > + igt_pipe_crc_free(pipe_crc); > + } > igt_assert(fb_id_upper); > > /* > @@ -560,6 +568,8 @@ plane_immutable_zpos(data_t *data, igt_output_t *output, enum pipe pipe, int n_p > igt_plane_set_fb(plane_upper, NULL); > } > > + igt_pipe_crc_stop(pipe_crc); > + igt_pipe_crc_free(pipe_crc); > igt_remove_fb(data->drm_fd, &fb_ref); > igt_remove_fb(data->drm_fd, &fb_lower); > igt_remove_fb(data->drm_fd, &fb_upper); ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t v1 2/2] HAX patch do not merge 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu 2025-01-31 19:16 ` [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup Naladala Ramanaidu @ 2025-01-31 19:16 ` Naladala Ramanaidu 2025-01-31 19:30 ` ✓ i915.CI.BAT: success for tests/kms_atomic: Free up CRC resources Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Naladala Ramanaidu @ 2025-01-31 19:16 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu HAX patch do not merge Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/intel-ci/fast-feedback.testlist | 168 +------------- tests/intel-ci/xe-fast-feedback.testlist | 273 +---------------------- 2 files changed, 2 insertions(+), 439 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..18593c257 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,170 +2,4 @@ igt@i915_module_load@load # Keep alphabetically sorted by default -igt@core_auth@basic-auth -igt@debugfs_test@read_all_entries -igt@debugfs_test@basic-hwmon -igt@debugfs_test@sysfs -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write -igt@gem_basic@bad-close -igt@gem_basic@create-close -igt@gem_basic@create-fd-close -igt@gem_busy@busy@all-engines -igt@gem_close_race@basic-process -igt@gem_close_race@basic-threads -igt@gem_ctx_create@basic -igt@gem_ctx_create@basic-files -igt@gem_ctx_exec@basic -igt@gem_exec_basic@basic -igt@gem_exec_create@basic -igt@gem_exec_fence@basic-busy -igt@gem_exec_fence@basic-wait -igt@gem_exec_fence@basic-await -igt@gem_exec_fence@nb-await -igt@gem_exec_gttfill@basic -igt@gem_exec_parallel@engines -igt@gem_exec_store@basic -igt@gem_flink_basic@bad-flink -igt@gem_flink_basic@bad-open -igt@gem_flink_basic@basic -igt@gem_flink_basic@double-flink -igt@gem_flink_basic@flink-lifetime -igt@gem_huc_copy@huc-copy -igt@gem_linear_blits@basic -igt@gem_mmap@basic -igt@gem_mmap_gtt@basic -igt@gem_render_linear_blits@basic -igt@gem_render_tiled_blits@basic -igt@gem_ringfill@basic-all -igt@gem_softpin@allocator-basic -igt@gem_softpin@allocator-basic-reserve -igt@gem_softpin@safe-alignment -igt@gem_sync@basic-all -igt@gem_sync@basic-each -igt@gem_tiled_blits@basic -igt@gem_tiled_fence_blits@basic -igt@gem_tiled_pread_basic -igt@gem_wait@busy@all-engines -igt@gem_wait@wait@all-engines -igt@i915_getparams_basic@basic-eu-total -igt@i915_getparams_basic@basic-subslice-total -igt@i915_hangman@error-state-basic -igt@i915_pciid -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@basic-y-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@bo-too-small-due-to-tiling -igt@kms_addfb_basic@clobberred-modifier -igt@kms_addfb_basic@framebuffer-vs-set-tiling -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@tile-pitch-mismatch -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_busy@basic -igt@kms_prop_blob@basic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@force-load-detect -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_pm_backlight@basic-brightness -igt@kms_pm_rpm@basic-pci-d3-state -igt@kms_pm_rpm@basic-rte -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@kms_psr@psr-primary-mmap-gtt -igt@kms_setmode@basic-clone-single-crtc -igt@i915_pm_rps@basic-api -igt@prime_self_import@basic-llseek-bad -igt@prime_self_import@basic-llseek-size -igt@prime_self_import@basic-with_fd_dup -igt@prime_self_import@basic-with_one_bo -igt@prime_self_import@basic-with_one_bo_two_files -igt@prime_self_import@basic-with_two_bos -igt@prime_vgem@basic-fence-flip -igt@prime_vgem@basic-fence-mmap -igt@prime_vgem@basic-fence-read -igt@prime_vgem@basic-gtt -igt@prime_vgem@basic-read -igt@prime_vgem@basic-write -igt@vgem_basic@setversion -igt@vgem_basic@create -igt@vgem_basic@debugfs -igt@vgem_basic@dmabuf-export -igt@vgem_basic@dmabuf-fence -igt@vgem_basic@dmabuf-fence-before -igt@vgem_basic@dmabuf-mmap -igt@vgem_basic@mmap -igt@vgem_basic@second-client -igt@vgem_basic@sysfs - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. - -igt@core_hotunplug@unbind-rebind -igt@vgem_basic@unload -igt@i915_module_load@reload -igt@gem_lmem_swapping@basic -igt@gem_lmem_swapping@parallel-random-engines -igt@gem_lmem_swapping@random-engines -igt@gem_lmem_swapping@verify-random -igt@i915_pm_rpm@module-reload - -# Kernel selftests -igt@i915_selftest@live -igt@dmabuf@all-tests +igt@kms_atomic@plane-immutable-zpos diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 0234d3e72..52219721c 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,275 +1,4 @@ # Should be the first test igt@xe_module_load@load -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write - -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_prop_blob@basic -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all -igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1 -igt@xe_compute@compute-square -igt@xe_create@create-execqueues-noleak -igt@xe_create@create-execqueues-leak -igt@xe_create@create-invalid-mbz -igt@xe_create@create-massive-size -igt@xe_debugfs@base -igt@xe_debugfs@gt -igt@xe_debugfs@forcewake -igt@xe_dma_buf_sync@export-dma-buf-once-write-sync -igt@xe_dma_buf_sync@export-dma-buf-once-read-sync -igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync -igt@xe_dma_buf_sync@export-dma-buf-once-write-read-sync -igt@xe_evict_ccs@evict-overcommit-simple -igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd -igt@xe_exec_atomic@basic-dec-all -igt@xe_exec_atomic@basic-inc-all -igt@xe_exec_balancer@twice-virtual-basic -igt@xe_exec_balancer@no-exec-virtual-basic -igt@xe_exec_balancer@twice-cm-virtual-basic -igt@xe_exec_balancer@no-exec-cm-virtual-basic -igt@xe_exec_balancer@twice-virtual-userptr -igt@xe_exec_balancer@twice-cm-virtual-userptr -igt@xe_exec_balancer@twice-virtual-rebind -igt@xe_exec_balancer@twice-cm-virtual-rebind -igt@xe_exec_balancer@twice-virtual-userptr-rebind -igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind -igt@xe_exec_balancer@twice-virtual-userptr-invalidate -igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate -igt@xe_exec_balancer@twice-parallel-basic -igt@xe_exec_balancer@no-exec-parallel-basic -igt@xe_exec_balancer@twice-parallel-userptr -igt@xe_exec_balancer@twice-parallel-rebind -igt@xe_exec_balancer@twice-parallel-userptr-rebind -igt@xe_exec_balancer@twice-parallel-userptr-invalidate -igt@xe_exec_basic@twice-basic -igt@xe_exec_basic@no-exec-basic -igt@xe_exec_basic@twice-basic-defer-mmap -igt@xe_exec_basic@twice-basic-defer-bind -igt@xe_exec_basic@twice-userptr -igt@xe_exec_basic@twice-rebind -igt@xe_exec_basic@twice-userptr-rebind -igt@xe_exec_basic@twice-userptr-invalidate -igt@xe_exec_basic@no-exec-userptr-invalidate -igt@xe_exec_basic@twice-bindexecqueue -igt@xe_exec_basic@no-exec-bindexecqueue -igt@xe_exec_basic@twice-bindexecqueue-userptr -igt@xe_exec_basic@twice-bindexecqueue-rebind -igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind -igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_compute_mode@twice-basic -igt@xe_exec_compute_mode@twice-preempt-fence-early -igt@xe_exec_compute_mode@twice-userptr -igt@xe_exec_compute_mode@twice-rebind -igt@xe_exec_compute_mode@twice-userptr-rebind -igt@xe_exec_compute_mode@twice-userptr-invalidate -igt@xe_exec_compute_mode@twice-bindexecqueue -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr -igt@xe_exec_compute_mode@twice-bindexecqueue-rebind -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_queue_property@invalid-property -igt@xe_exec_reset@close-fd-no-exec -igt@xe_exec_reset@cm-close-fd-no-exec -igt@xe_exec_reset@virtual-close-fd-no-exec -igt@xe_exec_store@basic-store -igt@xe_gpgpu_fill@basic -igt@xe_gt_freq@freq_basic_api -igt@xe_gt_freq@freq_fixed_idle -igt@xe_gt_freq@freq_range_idle -igt@xe_huc_copy@huc_copy -igt@xe_intel_bb@add-remove-objects -igt@xe_intel_bb@bb-with-allocator -igt@xe_intel_bb@blit-reloc -igt@xe_intel_bb@blit-simple -igt@xe_intel_bb@create-in-region -igt@xe_intel_bb@delta-check -igt@xe_intel_bb@destroy-bb -igt@xe_intel_bb@intel-bb-blit-none -igt@xe_intel_bb@intel-bb-blit-x -igt@xe_intel_bb@intel-bb-blit-y -igt@xe_intel_bb@lot-of-buffers -igt@xe_intel_bb@offset-control -igt@xe_intel_bb@purge-bb -igt@xe_intel_bb@render -igt@xe_intel_bb@reset-bb -igt@xe_intel_bb@simple-bb -igt@xe_intel_bb@simple-bb-ctx -igt@xe_mmap@bad-extensions -igt@xe_mmap@bad-flags -igt@xe_mmap@bad-object -igt@xe_mmap@cpu-caching -igt@xe_mmap@system -igt@xe_mmap@vram -igt@xe_mmap@vram-system -igt@xe_pm_residency@gt-c6-on-idle -igt@xe_prime_self_import@basic-with_one_bo -igt@xe_prime_self_import@basic-with_fd_dup -#igt@xe_prime_self_import@basic-llseek-size -igt@xe_query@query-engines -igt@xe_query@query-mem-usage -igt@xe_query@query-gt-list -igt@xe_query@query-config -igt@xe_query@query-hwconfig -igt@xe_query@query-topology -igt@xe_query@query-invalid-extension -igt@xe_query@query-invalid-query -igt@xe_query@query-invalid-size -igt@xe_spin_batch@spin-basic -igt@xe_spin_batch@spin-batch -igt@xe_sriov_flr@flr-vf1-clear -igt@xe_sysfs_defaults@engine-defaults -igt@xe_sysfs_scheduler@preempt_timeout_us-invalid -igt@xe_sysfs_scheduler@preempt_timeout_us-min-max -igt@xe_sysfs_scheduler@timeslice_duration_us-invalid -igt@xe_sysfs_scheduler@timeslice_duration_us-min-max -igt@xe_sysfs_scheduler@job_timeout_ms-invalid -igt@xe_sysfs_scheduler@job_timeout_ms-min-max -#igt@xe_vm@bind-once -#igt@xe_vm@scratch -igt@xe_vm@shared-pte-page -igt@xe_vm@shared-pde-page -igt@xe_vm@shared-pde2-page -igt@xe_vm@shared-pde3-page -igt@xe_vm@bind-execqueues-independent -igt@xe_vm@large-split-binds-268435456 -igt@xe_vm@munmap-style-unbind-one-partial -igt@xe_vm@munmap-style-unbind-end -igt@xe_vm@munmap-style-unbind-front -igt@xe_vm@munmap-style-unbind-userptr-one-partial -igt@xe_vm@munmap-style-unbind-userptr-end -igt@xe_vm@munmap-style-unbind-userptr-front -igt@xe_vm@munmap-style-unbind-userptr-inval-end -igt@xe_vm@munmap-style-unbind-userptr-inval-front -igt@xe_pat@userptr-coh-none -igt@xe_pat@prime-self-import-coh -igt@xe_pat@prime-external-import-coh -igt@xe_pat@pat-index-all -igt@xe_pat@pat-index-xelp -igt@xe_pat@pat-index-xehpc -igt@xe_pat@pat-index-xelpg -igt@xe_pat@pat-index-xe2 -igt@xe_waitfence@abstime -igt@xe_waitfence@engine -igt@xe_waitfence@reltime - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. -igt@core_hotunplug@unbind-rebind - -# Run KUnit tests at the end -igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit -igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit -igt@xe_live_ktest@xe_dma_buf -igt@xe_live_ktest@xe_migrate - -# Move fault_mode tests at the end to unblock execution -igt@xe_exec_fault_mode@twice-basic -igt@xe_exec_fault_mode@many-basic -igt@xe_exec_fault_mode@twice-userptr -igt@xe_exec_fault_mode@twice-rebind -igt@xe_exec_fault_mode@twice-userptr-rebind -igt@xe_exec_fault_mode@twice-userptr-invalidate -igt@xe_exec_fault_mode@twice-bindexecqueue -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_fault_mode@twice-basic-imm -igt@xe_exec_fault_mode@twice-userptr-imm -igt@xe_exec_fault_mode@twice-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-basic-prefetch -igt@xe_exec_fault_mode@twice-userptr-prefetch -igt@xe_exec_fault_mode@twice-rebind-prefetch -igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch -igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch -igt@xe_exec_fault_mode@twice-invalid-fault -igt@xe_exec_fault_mode@twice-invalid-userptr-fault -igt@xe_exec_threads@threads-basic -igt@xe_exec_threads@threads-mixed-basic -igt@xe_exec_threads@threads-mixed-shared-vm-basic -igt@xe_exec_threads@threads-mixed-fd-basic -igt@xe_exec_threads@threads-mixed-userptr-invalidate -igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race -igt@xe_evict@evict-beng-small -igt@xe_evict@evict-beng-small-cm -igt@xe_evict@evict-beng-small-external -igt@xe_evict@evict-beng-small-external-cm -igt@xe_evict@evict-beng-small-multi-vm -igt@xe_evict@evict-small -igt@xe_evict@evict-small-cm -igt@xe_evict@evict-small-external -igt@xe_evict@evict-small-external-cm -igt@xe_evict@evict-small-multi-vm +igt@kms_atomic@plane-immutable-zpos -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_atomic: Free up CRC resources 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu 2025-01-31 19:16 ` [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup Naladala Ramanaidu 2025-01-31 19:16 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu @ 2025-01-31 19:30 ` Patchwork 2025-01-31 19:40 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-01-31 19:30 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3947 bytes --] == Series Details == Series: tests/kms_atomic: Free up CRC resources URL : https://patchwork.freedesktop.org/series/144203/ State : success == Summary == CI Bug Log - changes from IGT_8219 -> IGTPW_12529 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m New tests --------- New tests have been introduced between IGT_8219 and IGTPW_12529: ### New IGT tests (1) ### * igt@kms_atomic@plane-immutable-zpos@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.57] s Known issues ------------ Here are the changes found in IGTPW_12529 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic@plane-immutable-zpos: - fi-kbl-8809g: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/fi-kbl-8809g/igt@kms_atomic@plane-immutable-zpos.html - fi-bsw-nick: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/fi-bsw-nick/igt@kms_atomic@plane-immutable-zpos.html - fi-kbl-guc: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/fi-kbl-guc/igt@kms_atomic@plane-immutable-zpos.html - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#6078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-atsm-1/igt@kms_atomic@plane-immutable-zpos.html - bat-mtlp-6: NOTRUN -> [SKIP][5] ([i915#9792]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-mtlp-6/igt@kms_atomic@plane-immutable-zpos.html - fi-kbl-x1275: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/fi-kbl-x1275/igt@kms_atomic@plane-immutable-zpos.html - bat-adlp-11: NOTRUN -> [SKIP][7] ([i915#10470] / [i915#10501]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-adlp-11/igt@kms_atomic@plane-immutable-zpos.html - bat-dg1-6: NOTRUN -> [SKIP][8] ([i915#12311]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-dg1-6/igt@kms_atomic@plane-immutable-zpos.html - bat-kbl-2: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-kbl-2/igt@kms_atomic@plane-immutable-zpos.html - bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#11346]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-arlh-2/igt@kms_atomic@plane-immutable-zpos.html * igt@kms_atomic@plane-immutable-zpos@pipe-a-edp-1: - bat-twl-1: NOTRUN -> [DMESG-WARN][11] ([i915#1982]) +1 other test dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/bat-twl-1/igt@kms_atomic@plane-immutable-zpos@pipe-a-edp-1.html [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8219 -> IGTPW_12529 CI-20190529: 20190529 CI_DRM_16052: 12fb3dcbf0667f1ed3c3caff321de4a1ad3d4a7a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12529: eada2b49181e06e8d3ed1916acea2728b8ffc878 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8219: d92c8eadff2a4e5b4d90cf8c8c52936263d29394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/index.html [-- Attachment #2: Type: text/html, Size: 4640 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_atomic: Free up CRC resources 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu ` (2 preceding siblings ...) 2025-01-31 19:30 ` ✓ i915.CI.BAT: success for tests/kms_atomic: Free up CRC resources Patchwork @ 2025-01-31 19:40 ` Patchwork 2025-02-01 3:44 ` ✗ Xe.CI.Full: failure " Patchwork 2025-02-01 10:54 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-01-31 19:40 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2537 bytes --] == Series Details == Series: tests/kms_atomic: Free up CRC resources URL : https://patchwork.freedesktop.org/series/144203/ State : success == Summary == CI Bug Log - changes from XEIGT_8219_BAT -> XEIGTPW_12529_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8219_BAT and XEIGTPW_12529_BAT: ### New IGT tests (1) ### * igt@kms_atomic@plane-immutable-zpos@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [1.73] s Known issues ------------ Here are the changes found in XEIGTPW_12529_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic@plane-immutable-zpos: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2463]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/bat-adlp-vf/igt@kms_atomic@plane-immutable-zpos.html - bat-atsm-2: NOTRUN -> [SKIP][2] ([Intel XE#1024]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/bat-atsm-2/igt@kms_atomic@plane-immutable-zpos.html - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#3419]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/bat-bmg-2/igt@kms_atomic@plane-immutable-zpos.html - bat-lnl-2: NOTRUN -> [SKIP][4] ([Intel XE#2235]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/bat-lnl-2/igt@kms_atomic@plane-immutable-zpos.html - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#1024]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/bat-pvc-2/igt@kms_atomic@plane-immutable-zpos.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 Build changes ------------- * IGT: IGT_8219 -> IGTPW_12529 IGTPW_12529: eada2b49181e06e8d3ed1916acea2728b8ffc878 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8219: d92c8eadff2a4e5b4d90cf8c8c52936263d29394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2583-12fb3dcbf0667f1ed3c3caff321de4a1ad3d4a7a: 12fb3dcbf0667f1ed3c3caff321de4a1ad3d4a7a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/index.html [-- Attachment #2: Type: text/html, Size: 3204 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_atomic: Free up CRC resources 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu ` (3 preceding siblings ...) 2025-01-31 19:40 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-02-01 3:44 ` Patchwork 2025-02-01 10:54 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-02-01 3:44 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 76987 bytes --] == Series Details == Series: tests/kms_atomic: Free up CRC resources URL : https://patchwork.freedesktop.org/series/144203/ State : failure == Summary == CI Bug Log - changes from XEIGT_8219_full -> XEIGTPW_12529_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12529_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12529_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12529_full: ### IGT changes ### #### Possible regressions #### * igt@kms_setmode@basic@pipe-b-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html Known issues ------------ Here are the changes found in XEIGTPW_12529_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#3767]) +15 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1407]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#610]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +10 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#607]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2191]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1512]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#367]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +58 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][23] ([Intel XE#1033]) +25 other tests dmesg-warn [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [DMESG-WARN][24] ([Intel XE#4172]) +1 other test dmesg-warn [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3432]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +244 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#3124] / [Intel XE#4010]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#1727] / [Intel XE#3113]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1152]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-75: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2325]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +12 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@vga-hpd: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#307]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@srm: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1188]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2291]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3070]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [PASS][58] -> [DMESG-FAIL][59] ([Intel XE#1033]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#776]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#703]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2375]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1135]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [PASS][64] -> [FAIL][65] ([Intel XE#3321]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301] / [Intel XE#3321]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#3321]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#301]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2316]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#1033]) +43 other tests dmesg-warn [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#886]) +9 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: NOTRUN -> [FAIL][78] ([Intel XE#886]) +2 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#3149] / [Intel XE#886]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-3/igt@kms_flip@plain-flip-ts-check-interruptible.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][81] -> [FAIL][82] ([Intel XE#2882]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-dp2: - shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2882]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check@a-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2293] / [Intel XE#2380]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/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-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#651]) +32 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4141]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#656]) +19 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#658]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2311]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2313]) +8 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#653]) +38 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#605]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#346]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2927]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2927]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2925]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#356]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2486]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-y: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#599]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][105] -> [SKIP][106] ([Intel XE#2685] / [Intel XE#3307]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_plane_scaling@intel-max-src-size.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +9 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2938]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#870]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#870]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1129]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#908]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1439] / [Intel XE#836]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#3141]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1489]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@pr-basic: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1406]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-1/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1127]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1127]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-5/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][127] ([Intel XE#3414]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic: - shard-dg2-set2: [PASS][128] -> [FAIL][129] ([Intel XE#2883]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_setmode@basic.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][130] ([Intel XE#2883]) +3 other tests fail [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1435]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2426]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [PASS][133] -> [FAIL][134] ([Intel XE#899]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#455]) +22 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#756]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1123]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [PASS][138] -> [DMESG-WARN][139] ([Intel XE#4172]) +48 other tests dmesg-warn [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-7/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_eudebug@basic-vm-bind-discovery: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-discovery.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#3889]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-2/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_evict@evict-large-external: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#688]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@xe_evict@evict-large-external.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2322]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1392]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel XE#1392]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@xe_exec_basic@multigpu-once-null-rebind.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#288]) +30 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind-prefetch.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2360]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2905]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html * igt@xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#584]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#255]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2229]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2833]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [PASS][155] -> [SKIP][156] ([Intel XE#1192]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-7/igt@xe_live_ktest@xe_migrate.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#378]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-dg2-set2: ([PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [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], [SKIP][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], [PASS][204]) ([Intel XE#378]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_module_load@load.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][206] ([Intel XE#1173]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#1061]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][208] ([Intel XE#2284] / [Intel XE#366]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-7/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [PASS][210] -> [DMESG-WARN][211] ([Intel XE#4172] / [Intel XE#569]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@xe_pm@s3-multiple-execs.html - shard-dg2-set2: [PASS][212] -> [DMESG-WARN][213] ([Intel XE#1033] / [Intel XE#569]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: [PASS][214] -> [ABORT][215] ([Intel XE#1358]) +1 other test abort [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_pm@s4-d3hot-basic-exec.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: NOTRUN -> [ABORT][216] ([Intel XE#1358]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_pm@s4-exec-after.html - shard-lnl: [PASS][217] -> [ABORT][218] ([Intel XE#1358] / [Intel XE#1607]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-8/igt@xe_pm@s4-exec-after.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-2/igt@xe_pm@s4-exec-after.html * igt@xe_pm@s4-multiple-execs: - shard-dg2-set2: [PASS][219] -> [ABORT][220] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@xe_pm@s4-multiple-execs.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_pm@s4-multiple-execs.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#944]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#944]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][223] ([Intel XE#944]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][224] ([Intel XE#3075] / [Intel XE#3084]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][225] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][226] +3 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-dg2-set2: [DMESG-WARN][227] ([Intel XE#1033]) -> [PASS][228] +29 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [DMESG-WARN][229] ([Intel XE#4172]) -> [PASS][230] +66 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][231] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][233] ([Intel XE#4010]) -> [PASS][234] +1 other test pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-bmg: [DMESG-WARN][235] ([Intel XE#877]) -> [PASS][236] +1 other test pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][237] ([Intel XE#2291]) -> [PASS][238] +5 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][239] ([Intel XE#4172] / [Intel XE#877]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-bmg: [DMESG-FAIL][241] ([Intel XE#4172]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: [FAIL][243] ([Intel XE#2882]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4: - shard-dg2-set2: [DMESG-FAIL][245] ([Intel XE#1033]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][247] ([Intel XE#2316]) -> [PASS][248] +4 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][249] ([Intel XE#301]) -> [PASS][250] +1 other test pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][251] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][253] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a6.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a6.html * igt@kms_flip@plain-flip-ts-check: - shard-lnl: [FAIL][255] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-8/igt@kms_flip@plain-flip-ts-check.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-lnl: [FAIL][257] ([Intel XE#886]) -> [PASS][258] +2 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-8/igt@kms_flip@plain-flip-ts-check@c-edp1.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-6/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2-set2: [ABORT][259] ([Intel XE#2625]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@kms_hdr@static-toggle-suspend.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [DMESG-WARN][261] ([Intel XE#2566] / [Intel XE#4172]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_plane@pixel-format-source-clamping.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][263] ([Intel XE#718]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@testdisplay: - shard-dg2-set2: [DMESG-WARN][265] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@testdisplay.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@testdisplay.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][267] ([Intel XE#1392]) -> [PASS][268] +1 other test pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [SKIP][269] ([Intel XE#1192]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@xe_live_ktest@xe_bo.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@xe_live_ktest@xe_bo.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][271] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][272] +2 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-436/igt@xe_pm@s3-basic-exec.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [DMESG-WARN][273] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][274] +4 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [ABORT][275] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_pm@s4-basic-exec.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_pm@s4-basic-exec.html - shard-lnl: [ABORT][277] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-lnl-1/igt@xe_pm@s4-basic-exec.html * igt@xe_pm_residency@cpg-basic: - shard-dg2-set2: [ABORT][279] ([Intel XE#4046]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_pm_residency@cpg-basic.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@xe_pm_residency@cpg-basic.html #### Warnings #### * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][281] ([Intel XE#1178]) -> [SKIP][282] ([Intel XE#2341]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][283] ([Intel XE#2316]) -> [FAIL][284] ([Intel XE#3321]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html - shard-dg2-set2: [DMESG-FAIL][285] ([Intel XE#1033]) -> [FAIL][286] ([Intel XE#301]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-WARN][287] ([Intel XE#4172]) -> [FAIL][288] ([Intel XE#3321]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][289] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][290] ([Intel XE#1033]) +2 other tests dmesg-warn [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][291] ([Intel XE#2312]) -> [SKIP][292] ([Intel XE#2311]) +13 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][293] ([Intel XE#2311]) -> [SKIP][294] ([Intel XE#2312]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][295] ([Intel XE#4141]) -> [SKIP][296] ([Intel XE#2312]) +6 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][297] ([Intel XE#2312]) -> [SKIP][298] ([Intel XE#4141]) +5 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][299] ([Intel XE#2313]) -> [SKIP][300] ([Intel XE#2312]) +10 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][301] ([Intel XE#2312]) -> [SKIP][302] ([Intel XE#2313]) +12 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][303] ([Intel XE#362]) -> [FAIL][304] ([Intel XE#1729]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [ABORT][305] ([Intel XE#1033] / [Intel XE#1358] / [Intel XE#1794]) -> [ABORT][306] ([Intel XE#1358] / [Intel XE#1794]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [ABORT][307] ([Intel XE#1033] / [Intel XE#1358] / [Intel XE#1794]) -> [DMESG-WARN][308] ([Intel XE#1033] / [Intel XE#569]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8219/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [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#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#4046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4046 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [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 Build changes ------------- * IGT: IGT_8219 -> IGTPW_12529 IGTPW_12529: eada2b49181e06e8d3ed1916acea2728b8ffc878 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8219: d92c8eadff2a4e5b4d90cf8c8c52936263d29394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2583-12fb3dcbf0667f1ed3c3caff321de4a1ad3d4a7a: 12fb3dcbf0667f1ed3c3caff321de4a1ad3d4a7a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12529/index.html [-- Attachment #2: Type: text/html, Size: 91184 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_atomic: Free up CRC resources 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu ` (4 preceding siblings ...) 2025-02-01 3:44 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-02-01 10:54 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-02-01 10:54 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100259 bytes --] == Series Details == Series: tests/kms_atomic: Free up CRC resources URL : https://patchwork.freedesktop.org/series/144203/ State : failure == Summary == CI Bug Log - changes from IGT_8219_full -> IGTPW_12529_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12529_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12529_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12529_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@kms: - shard-rkl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-rkl-2/igt@gem_eio@kms.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@gem_eio@kms.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][3] -> [FAIL][4] +2 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-glk2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@perf_pmu@module-unload: - shard-dg1: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-17/igt@perf_pmu@module-unload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@perf_pmu@module-unload.html #### Warnings #### * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: [SKIP][7] ([i915#8708]) -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_setmode@basic@pipe-a-hdmi-a-2: - {shard-dg2-9}: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-9/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html Known issues ------------ Here are the changes found in IGTPW_12529_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-8/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +15 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@vcs1: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8414]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@drm_fdinfo@busy-idle@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8414]) +15 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-1/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#3281]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#13008]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-9/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#6335]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_freq@sysfs: - shard-dg2: NOTRUN -> [FAIL][26] ([i915#9561]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#12353]) +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][28] ([i915#1099]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb5/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][33] ([i915#280]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-mtlp: [PASS][35] -> [ABORT][36] ([i915#7975]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-mtlp-3/igt@gem_eio@hibernate.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-7/igt@gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][37] ([i915#10030] / [i915#7975] / [i915#8213]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-tglu-1: NOTRUN -> [DMESG-WARN][38] ([i915#13363]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_eio@kms.html - shard-dg1: NOTRUN -> [FAIL][39] ([i915#5784]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][40] ([i915#8898]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@hog: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-9/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#6334]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#6344]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#6344]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +8 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][59] -> [INCOMPLETE][60] ([i915#11441] / [i915#13304]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#2190]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-6/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][65] ([i915#2190]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-4/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4613]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#284]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@gem_mmap@bad-object.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4077]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][78] ([i915#2658]) +1 other test warn [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-9/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][80] ([i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: NOTRUN -> [TIMEOUT][83] ([i915#12917] / [i915#12964]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][88] +431 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8411]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4885]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][93] ([i915#13306]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk3/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][94] ([i915#13263] / [i915#13449]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb2/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#3323]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-7/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][97] ([i915#3323]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#3323]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#4880]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#3297]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][104] +465 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb5/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#2527]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#2856]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4881]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][112] ([i915#9820]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#8399]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][114] ([i915#12455]) +1 other test incomplete [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [PASS][115] -> [FAIL][116] ([i915#3591]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][117] ([i915#2681]) +4 other tests warn [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][118] -> [FAIL][119] ([i915#12739] / [i915#3591]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][120] +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#11681] / [i915#6621]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#11681] / [i915#6621]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#11681]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11681]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#6245]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#5723]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][128] ([i915#1982] / [i915#9311]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk8/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][129] ([i915#9311]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk8/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [PASS][130] -> [DMESG-FAIL][131] ([i915#12964]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#4817]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk7/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4212]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4212]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4215]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4215] / [i915#5190]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#4212]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#12454] / [i915#12712]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#8709]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#12967]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][141] ([i915#1769]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#5286]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#5286]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#5286]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3638]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +11 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6187]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +39 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#6095]) +159 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +65 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +168 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6095]) +54 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6095]) +69 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#12805]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#12805]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#12805]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#12805]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +12 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#12796]) +1 other test incomplete [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#12313]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#12313]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#12313]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#12313]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3742]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7213]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3742]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][176] +13 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +8 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +11 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +8 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-dg2: [PASS][183] -> [SKIP][184] ([i915#3555]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-10/igt@kms_color@deep-color.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3116] / [i915#3299]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3299]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3299]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3116] / [i915#3299]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3116]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][191] ([i915#7173]) +1 other test timeout [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#7116] / [i915#7118]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-6/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6944]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#7116] / [i915#9424]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][195] -> [FAIL][196] ([i915#13566]) +1 other test fail [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][197] ([i915#13566]) +2 other tests fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8814]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-tglu: NOTRUN -> [FAIL][199] ([i915#13566]) +1 other test fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-6/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3555]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#13049]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#13049]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8814]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#13049]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2: NOTRUN -> [SKIP][207] ([i915#13049]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#13046] / [i915#5354]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9809]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#4103]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][211] +13 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#9067]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#4103] / [i915#4213]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#4103]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#4213]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9833]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][217] ([i915#12170]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][218] ([i915#11968]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8827]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8812]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8812]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3840] / [i915#9053]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3840] / [i915#9053]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3469]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3955]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3469]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#4854]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#1839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-5/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4881]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][238] ([i915#11989]) +3 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#9934]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9934]) +4 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#3637]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9934]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3637]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3637]) +8 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][245] ([i915#12964]) +16 other tests dmesg-warn [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-tglu-1: NOTRUN -> [FAIL][246] ([i915#11989]) +3 other tests fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1: - shard-mtlp: [PASS][247] -> [FAIL][248] ([i915#11989]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][249] ([i915#11989]) +3 other tests fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3.html * igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1: - shard-mtlp: [PASS][250] -> [FAIL][251] ([i915#11989] / [i915#12740]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8810]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#2587] / [i915#2672]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#2672]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672]) +4 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#8813]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8810]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#2672]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8708]) +7 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: [PASS][269] -> [DMESG-WARN][270] ([i915#12964]) +41 other tests dmesg-warn [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][271] -> [FAIL][272] ([i915#6880]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#5354]) +26 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#8708]) +21 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#1825]) +16 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#8708]) +18 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#5439]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#5439]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#10055]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3023]) +21 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3458]) +18 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#1825]) +25 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#3458]) +17 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][284] +47 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#12713]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_hdr@brightness-with-hdr.html - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#12713]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][290] -> [SKIP][291] ([i915#3555] / [i915#8228]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-10/igt@kms_hdr@static-toggle.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#6403] / [i915#8826]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#9457]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#12339]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#10656]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#10656]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#10656]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#12388]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#12388]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12394]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#12339]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#13522]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#13522]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#6301]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][308] +40 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [DMESG-WARN][309] ([i915#118]) +1 other test dmesg-warn [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][310] ([i915#10647] / [i915#12177]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][311] ([i915#10647] / [i915#12169]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][312] ([i915#10647]) +3 other tests fail [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#3555]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8806]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#9423]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#12247]) +7 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#12247]) +7 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12247]) +12 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-rkl: [PASS][319] -> [DMESG-WARN][320] ([i915#12964] / [i915#1982]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#12247]) +14 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#6953]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#12247]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#12247]) +13 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#3555] / [i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#6953]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9812]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#5354]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9812]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9292]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#3828]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#3828]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3361]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][335] ([i915#4281]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][336] -> [SKIP][337] ([i915#9340]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#8430]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#8430]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#8430]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#9519]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-9/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9519]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#9519]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#9519]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#6524]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#6524]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12316]) +4 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#9808]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][349] ([i915#11520]) +12 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#11520]) +3 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#11520]) +8 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#11520]) +8 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +17 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#11520]) +12 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#11520]) +9 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-dpms: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#9688]) +7 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +17 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#9732]) +15 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +13 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9732]) +27 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +21 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#9685]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#9685]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9685]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][367] ([i915#9685]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#4884]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html - shard-dg2: NOTRUN -> [SKIP][369] ([i915#4235]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-1/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#12755]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#12755]) +3 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#5289]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#5289]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#12755] / [i915#5190]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#5289]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][376] ([i915#13179]) +1 other test abort [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][377] ([i915#5465]) +2 other tests fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-snb5/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#3555]) +3 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#8623]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][380] -> [FAIL][381] ([i915#9196]) +1 other test fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@query-busy: - shard-dg1: [PASS][382] -> [DMESG-WARN][383] ([i915#4423]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-12/igt@kms_vblank@query-busy.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_vblank@query-busy.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][384] ([i915#12276]) +2 other tests incomplete [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#3555] / [i915#8808]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-8/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#11920]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_vrr@max-min.html - shard-dg2: NOTRUN -> [SKIP][388] ([i915#9906]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-5/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][389] -> [SKIP][390] ([i915#3555] / [i915#9906]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-10/igt@kms_vrr@negative-basic.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-3/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][391] ([i915#3555] / [i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][392] ([i915#9906]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#2437]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#2437] / [i915#9412]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#2437] / [i915#9412]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#7387]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#2435]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][398] -> [FAIL][399] ([i915#4349]) +4 other tests fail [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#8850]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-4/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][401] ([i915#8850]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][402] ([i915#8850]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-10/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][403] ([i915#13356]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-glk9/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][404] ([i915#8516]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][405] ([i915#8516]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][406] ([i915#3708]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-17/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][407] ([i915#3708] / [i915#4077]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg2-7/igt@prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][408] ([i915#3708] / [i915#4077]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-12/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][409] +79 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-2/igt@prime_vgem@fence-write-hang.html - shard-mtlp: NOTRUN -> [SKIP][410] ([i915#3708]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][411] ([i915#12910]) +9 other tests fail [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg1: [DMESG-WARN][412] ([i915#4423]) -> [PASS][413] +2 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-17/igt@gem_create@create-ext-cpu-access-big.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-13/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][414] ([i915#12543] / [i915#5784]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-14/igt@gem_eio@reset-stress.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@gem_eio@wait-wedge-immediate: - shard-mtlp: [ABORT][416] ([i915#13193]) -> [PASS][417] +5 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-mtlp-7/igt@gem_eio@wait-wedge-immediate.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-1/igt@gem_eio@wait-wedge-immediate.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][418] ([i915#9820]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [FAIL][420] ([i915#11808] / [i915#5956]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [DMESG-WARN][422] ([i915#12917] / [i915#12964]) -> [PASS][423] +3 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-rkl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [FAIL][424] ([i915#13566]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8219/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/shard-rkl-5/igt@kms_cursor_c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12529/index.html [-- Attachment #2: Type: text/html, Size: 110024 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-02-09 18:52 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-31 19:16 [PATCH i-g-t v1 0/2] tests/kms_atomic: Free up CRC resources Naladala Ramanaidu 2025-01-31 19:16 ` [PATCH i-g-t v1 1/2] tests/kms_atomic: Add necessary checks to ensure proper cleanup Naladala Ramanaidu 2025-02-07 6:35 ` Samala, Pranay 2025-02-09 18:52 ` Sharma, Swati2 2025-01-31 19:16 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu 2025-01-31 19:30 ` ✓ i915.CI.BAT: success for tests/kms_atomic: Free up CRC resources Patchwork 2025-01-31 19:40 ` ✓ Xe.CI.BAT: " Patchwork 2025-02-01 3:44 ` ✗ Xe.CI.Full: failure " Patchwork 2025-02-01 10:54 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox