* [PATCH i-g-t 0/2] Update skip messages in scaling modes
@ 2024-11-27 19:05 Naladala Ramanaidu
2024-11-27 19:05 ` [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Naladala Ramanaidu @ 2024-11-27 19:05 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Naladala Ramanaidu
These changes improve the clarity of test logs, making it easier
to understand why certain tests are skipped.
Naladala Ramanaidu (2):
tests/kms_scaling_modes: Add informative messages for skipped scaling
mode tests
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 171 +-------------
tests/intel-ci/xe-fast-feedback.testlist | 282 +----------------------
tests/kms_scaling_modes.c | 9 +-
3 files changed, 15 insertions(+), 447 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu @ 2024-11-27 19:05 ` Naladala Ramanaidu 2024-11-28 4:22 ` Samala, Pranay 2024-12-09 7:03 ` Sharma, Swati2 2024-11-27 19:05 ` [PATCH i-g-t 2/2] HAX patch do not merge Naladala Ramanaidu ` (4 subsequent siblings) 5 siblings, 2 replies; 9+ messages in thread From: Naladala Ramanaidu @ 2024-11-27 19:05 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, Naladala Ramanaidu Add `igt_info` messages to provide more context when skipping outputs that do not support scaling mode. Include `igt_info` messages to indicate when invalid pipe/output combinations are skipped. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/kms_scaling_modes.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c index 5fd34c4b2..dd2c6426c 100644 --- a/tests/kms_scaling_modes.c +++ b/tests/kms_scaling_modes.c @@ -117,12 +117,17 @@ static void test_scaling_mode(data_t *data, uint32_t flags) for_each_pipe_with_valid_output(display, pipe, output) { igt_display_reset(display); - if (!has_scaling_mode(output)) + if (!has_scaling_mode(output)) { + igt_info("Output %s does not support scaling mode.\n", + igt_output_name(output)); continue; + } igt_output_set_pipe(output, pipe); - if (!intel_pipe_output_combo_valid(display)) + if (!intel_pipe_output_combo_valid(display)) { + igt_info("Skipping invalid pipe/output combination.\n"); continue; + } igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) test_scaling_mode_on_output(display, pipe, output, flags); -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests 2024-11-27 19:05 ` [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu @ 2024-11-28 4:22 ` Samala, Pranay 2024-12-09 7:03 ` Sharma, Swati2 1 sibling, 0 replies; 9+ messages in thread From: Samala, Pranay @ 2024-11-28 4:22 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Naladala, Ramanaidu Hi Rama, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Naladala > Ramanaidu > Sent: Thursday, November 28, 2024 12:35 AM > To: igt-dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages > for skipped scaling mode tests > > Add `igt_info` messages to provide more context when skipping outputs that do > not support scaling mode. Include `igt_info` messages to indicate when invalid > pipe/output combinations are skipped. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_scaling_modes.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c index > 5fd34c4b2..dd2c6426c 100644 > --- a/tests/kms_scaling_modes.c > +++ b/tests/kms_scaling_modes.c > @@ -117,12 +117,17 @@ static void test_scaling_mode(data_t *data, uint32_t > flags) > for_each_pipe_with_valid_output(display, pipe, output) { > igt_display_reset(display); > > - if (!has_scaling_mode(output)) > + if (!has_scaling_mode(output)) { > + igt_info("Output %s does not support scaling mode.\n", > + igt_output_name(output)); Alignment should match open parenthesis > continue; > + } > > igt_output_set_pipe(output, pipe); > - if (!intel_pipe_output_combo_valid(display)) > + if (!intel_pipe_output_combo_valid(display)) { > + igt_info("Skipping invalid pipe/output combination.\n"); Is this really needed, Skip statement in intel_pipe_output_combo_valid() is self-explanatory. > continue; > + } > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), > igt_output_name(output)) > test_scaling_mode_on_output(display, pipe, output, > flags); > -- > 2.43.0 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests 2024-11-27 19:05 ` [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu 2024-11-28 4:22 ` Samala, Pranay @ 2024-12-09 7:03 ` Sharma, Swati2 1 sibling, 0 replies; 9+ messages in thread From: Sharma, Swati2 @ 2024-12-09 7:03 UTC (permalink / raw) To: Naladala Ramanaidu, igt-dev; +Cc: karthik.b.s Hi Ramanaidu, On 28-11-2024 12:35 am, Naladala Ramanaidu wrote: > Add `igt_info` messages to provide more context when skipping outputs > that do not support scaling mode. Include `igt_info` messages to > indicate when invalid pipe/output combinations are skipped. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_scaling_modes.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c > index 5fd34c4b2..dd2c6426c 100644 > --- a/tests/kms_scaling_modes.c > +++ b/tests/kms_scaling_modes.c > @@ -117,12 +117,17 @@ static void test_scaling_mode(data_t *data, uint32_t flags) > for_each_pipe_with_valid_output(display, pipe, output) { > igt_display_reset(display); > > - if (!has_scaling_mode(output)) > + if (!has_scaling_mode(output)) { > + igt_info("Output %s does not support scaling mode.\n", Please update the igt_info as igt_info("%s: Doesn't support IGT_CONNECTOR_SCALING_MODE\n", igt_output_name(output)); > + igt_output_name(output)); > continue; > + } > > igt_output_set_pipe(output, pipe); > - if (!intel_pipe_output_combo_valid(display)) > + if (!intel_pipe_output_combo_valid(display)) { > + igt_info("Skipping invalid pipe/output combination.\n"); > continue; > + } > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > test_scaling_mode_on_output(display, pipe, output, flags); ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] HAX patch do not merge 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu 2024-11-27 19:05 ` [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu @ 2024-11-27 19:05 ` Naladala Ramanaidu 2024-11-27 19:36 ` ✓ Xe.CI.BAT: success for Update skip messages in scaling modes Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Naladala Ramanaidu @ 2024-11-27 19:05 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, Naladala Ramanaidu HAX patch do not merge Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/intel-ci/fast-feedback.testlist | 171 +------------- tests/intel-ci/xe-fast-feedback.testlist | 282 +---------------------- 2 files changed, 8 insertions(+), 445 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..109e1c76f 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,170 +2,7 @@ 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_scaling_modes@scaling-mode-full +igt@kms_scaling_modes@scaling-mode-center +igt@kms_scaling_modes@scaling-mode-full-aspect +igt@kms_scaling_modes@scaling-mode-none diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 727be9230..230f2a8a9 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,281 +1,7 @@ # 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-mixed-threads-small-multi-vm -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-cm-threads-small -igt@xe_evict@evict-mixed-threads-small -igt@xe_evict@evict-mixed-threads-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@xe_evict@evict-small-multi-vm-cm -igt@xe_evict@evict-threads-small +igt@kms_scaling_modes@scaling-mode-full +igt@kms_scaling_modes@scaling-mode-center +igt@kms_scaling_modes@scaling-mode-full-aspect +igt@kms_scaling_modes@scaling-mode-none -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Update skip messages in scaling modes 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu 2024-11-27 19:05 ` [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu 2024-11-27 19:05 ` [PATCH i-g-t 2/2] HAX patch do not merge Naladala Ramanaidu @ 2024-11-27 19:36 ` Patchwork 2024-11-27 19:53 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-27 19:36 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3740 bytes --] == Series Details == Series: Update skip messages in scaling modes URL : https://patchwork.freedesktop.org/series/141850/ State : success == Summary == CI Bug Log - changes from XEIGT_8127_BAT -> XEIGTPW_12209_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_12209_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_scaling_modes@scaling-mode-full: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2463]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-adlp-vf/igt@kms_scaling_modes@scaling-mode-full.html - bat-lnl-2: NOTRUN -> [SKIP][2] ([Intel XE#2235]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-lnl-2/igt@kms_scaling_modes@scaling-mode-full.html - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1024]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-pvc-2/igt@kms_scaling_modes@scaling-mode-full.html - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#455]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-dg2-oem2/igt@kms_scaling_modes@scaling-mode-full.html - bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-atsm-2/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#3419]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html - bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#2413]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#2413] / [Intel XE#374]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-lnl-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-c-edp-1: - bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#374]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/bat-lnl-1/igt@kms_scaling_modes@scaling-mode-none@pipe-c-edp-1.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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8127 -> IGTPW_12209 * Linux: xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 -> xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f IGTPW_12209: 12209 IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198 xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f: 24e36a5200d65a337d37827d4abcae11c9693f6f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/index.html [-- Attachment #2: Type: text/html, Size: 4618 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for Update skip messages in scaling modes 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu ` (2 preceding siblings ...) 2024-11-27 19:36 ` ✓ Xe.CI.BAT: success for Update skip messages in scaling modes Patchwork @ 2024-11-27 19:53 ` Patchwork 2024-11-27 20:40 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-27 21:25 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-27 19:53 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev == Series Details == Series: Update skip messages in scaling modes URL : https://patchwork.freedesktop.org/series/141850/ State : success == Summary == CI Bug Log - changes from IGT_8127 -> IGTPW_12209 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/index.html Participating hosts (45 -> 42) ------------------------------ Missing (3): fi-glk-j4005 fi-snb-2520m bat-jsl-3 Known issues ------------ Here are the changes found in IGTPW_12209 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_scaling_modes@scaling-mode-center: - fi-blb-e6850: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-blb-e6850/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full: - fi-ivb-3770: NOTRUN -> [SKIP][2] +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-ivb-3770/igt@kms_scaling_modes@scaling-mode-full.html - bat-dg1-6: NOTRUN -> [SKIP][3] ([i915#12311]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-dg1-6/igt@kms_scaling_modes@scaling-mode-full.html - fi-elk-e7500: NOTRUN -> [SKIP][4] +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-elk-e7500/igt@kms_scaling_modes@scaling-mode-full.html - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#3555]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-dg2-8/igt@kms_scaling_modes@scaling-mode-full.html - fi-kbl-guc: NOTRUN -> [SKIP][6] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-kbl-guc/igt@kms_scaling_modes@scaling-mode-full.html - bat-adls-6: NOTRUN -> [SKIP][7] ([i915#3555]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adls-6/igt@kms_scaling_modes@scaling-mode-full.html - bat-adlm-1: NOTRUN -> [SKIP][8] ([i915#9900]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adlm-1/igt@kms_scaling_modes@scaling-mode-full.html - fi-ilk-650: NOTRUN -> [SKIP][9] +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-ilk-650/igt@kms_scaling_modes@scaling-mode-full.html - fi-tgl-1115g4: NOTRUN -> [SKIP][10] ([i915#3555]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-tgl-1115g4/igt@kms_scaling_modes@scaling-mode-full.html - fi-cfl-guc: NOTRUN -> [SKIP][11] +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-cfl-guc/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - bat-mtlp-6: NOTRUN -> [SKIP][12] ([i915#9792]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-mtlp-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html - bat-adlp-11: NOTRUN -> [SKIP][13] ([i915#10470]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adlp-11/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - fi-skl-6600u: NOTRUN -> [SKIP][14] +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-skl-6600u/igt@kms_scaling_modes@scaling-mode-none.html - bat-arlh-3: NOTRUN -> [SKIP][15] ([i915#11495]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-arlh-3/igt@kms_scaling_modes@scaling-mode-none.html - fi-pnv-d510: NOTRUN -> [SKIP][16] +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-pnv-d510/igt@kms_scaling_modes@scaling-mode-none.html - bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#3555]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-dg1-7/igt@kms_scaling_modes@scaling-mode-none.html - bat-adlp-9: NOTRUN -> [SKIP][18] ([i915#3555]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adlp-9/igt@kms_scaling_modes@scaling-mode-none.html - bat-twl-2: NOTRUN -> [SKIP][19] ([i915#11495]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-twl-2/igt@kms_scaling_modes@scaling-mode-none.html - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#3555]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-dg2-11/igt@kms_scaling_modes@scaling-mode-none.html - bat-rpls-4: NOTRUN -> [SKIP][21] ([i915#3555]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-rpls-4/igt@kms_scaling_modes@scaling-mode-none.html - fi-kbl-7567u: NOTRUN -> [SKIP][22] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-kbl-7567u/igt@kms_scaling_modes@scaling-mode-none.html - fi-cfl-8700k: NOTRUN -> [SKIP][23] +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-cfl-8700k/igt@kms_scaling_modes@scaling-mode-none.html - fi-kbl-8809g: NOTRUN -> [SKIP][24] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-kbl-8809g/igt@kms_scaling_modes@scaling-mode-none.html - bat-apl-1: NOTRUN -> [SKIP][25] +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-apl-1/igt@kms_scaling_modes@scaling-mode-none.html - bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#3555]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-dg2-14/igt@kms_scaling_modes@scaling-mode-none.html - fi-bsw-nick: NOTRUN -> [SKIP][27] +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-bsw-nick/igt@kms_scaling_modes@scaling-mode-none.html - bat-kbl-2: NOTRUN -> [SKIP][28] +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-kbl-2/igt@kms_scaling_modes@scaling-mode-none.html - bat-arls-5: NOTRUN -> [SKIP][29] ([i915#12732]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-arls-5/igt@kms_scaling_modes@scaling-mode-none.html - bat-rplp-1: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#5030]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-rplp-1/igt@kms_scaling_modes@scaling-mode-none.html - bat-arlh-2: NOTRUN -> [SKIP][31] ([i915#11346]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-arlh-2/igt@kms_scaling_modes@scaling-mode-none.html - fi-rkl-11600: NOTRUN -> [SKIP][32] ([i915#3555]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-rkl-11600/igt@kms_scaling_modes@scaling-mode-none.html - bat-dg2-9: NOTRUN -> [SKIP][33] ([i915#3555]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-dg2-9/igt@kms_scaling_modes@scaling-mode-none.html - fi-kbl-x1275: NOTRUN -> [SKIP][34] +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-kbl-x1275/igt@kms_scaling_modes@scaling-mode-none.html - bat-adlp-11: NOTRUN -> [SKIP][35] ([i915#10470] / [i915#10501]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adlp-11/igt@kms_scaling_modes@scaling-mode-none.html - fi-hsw-4770: NOTRUN -> [SKIP][36] +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-hsw-4770/igt@kms_scaling_modes@scaling-mode-none.html - fi-cfl-8109u: NOTRUN -> [SKIP][37] +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/fi-cfl-8109u/igt@kms_scaling_modes@scaling-mode-none.html - bat-mtlp-8: NOTRUN -> [SKIP][38] ([i915#3555] / [i915#5030] / [i915#9041]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-mtlp-8/igt@kms_scaling_modes@scaling-mode-none.html - bat-jsl-1: NOTRUN -> [SKIP][39] ([i915#3555] / [i915#5030]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-jsl-1/igt@kms_scaling_modes@scaling-mode-none.html - bat-adlp-6: NOTRUN -> [SKIP][40] ([i915#3555] / [i915#5030]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adlp-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - bat-adlp-6: NOTRUN -> [SKIP][41] ([i915#5030]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-adlp-6/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html - bat-rplp-1: NOTRUN -> [SKIP][42] ([i915#5030]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-rplp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-b-edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#5030]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-b-edp-1.html - bat-jsl-1: NOTRUN -> [SKIP][44] ([i915#5030]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-jsl-1/igt@kms_scaling_modes@scaling-mode-none@pipe-b-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-c-edp-1: - bat-twl-2: NOTRUN -> [SKIP][45] ([i915#11495] / [i915#5030]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-twl-2/igt@kms_scaling_modes@scaling-mode-none@pipe-c-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][46] ([i915#5030] / [i915#9041]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/bat-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#11495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11495 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12732 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030 [i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8127 -> IGTPW_12209 * Linux: CI_DRM_15749 -> CI_DRM_15754 CI-20190529: 20190529 CI_DRM_15749: 739a2506c44a0be22cc842d2c625a05ed21c1198 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15754: 24e36a5200d65a337d37827d4abcae11c9693f6f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12209: 12209 IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Update skip messages in scaling modes 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu ` (3 preceding siblings ...) 2024-11-27 19:53 ` ✓ i915.CI.BAT: " Patchwork @ 2024-11-27 20:40 ` Patchwork 2024-11-27 21:25 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-27 20:40 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 148634 bytes --] == Series Details == Series: Update skip messages in scaling modes URL : https://patchwork.freedesktop.org/series/141850/ State : failure == Summary == CI Bug Log - changes from XEIGT_8127_full -> XEIGTPW_12209_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12209_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12209_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_12209_full: ### IGT changes ### #### Possible regressions #### * igt@kms_color@ctm-0-75: - shard-bmg: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_color@ctm-0-75.html #### Warnings #### * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [FAIL][2] ([Intel XE#3499]) -> [DMESG-FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][4] ([Intel XE#3421] / [Intel XE#3467]) -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html Known issues ------------ Here are the changes found in XEIGTPW_12209_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#2423]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@core_getclient.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@core_getclient.html * igt@core_getversion@all-cards: - shard-bmg: [PASS][8] -> [FAIL][9] ([Intel XE#3249]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@core_getversion@all-cards.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotrebind: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@core_hotunplug@hotrebind.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@core_hotunplug@hotrebind.html * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#1885]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#3468]) +12 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@core_hotunplug@unplug-rescan.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#3453]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#3453]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@core_setmaster@master-drop-set-shared-fd.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@read: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@fbdev@read.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@fbdev@read.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#911]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_atomic@plane-overlay-legacy@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][24] ([Intel XE#1727]) +1 other test dmesg-warn [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_atomic@plane-overlay-legacy@pipe-a-hdmi-a-6.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#1426]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) +21 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2327]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2136] / [Intel XE#2351]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +83 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2423]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([Intel XE#2423] / [i915#2575]) +90 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2286]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#1475]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1138]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#3486]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#3321] / [Intel XE#3486]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/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][50] ([Intel XE#301]) +7 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][51] ([Intel XE#3468]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][52] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#2597]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#886]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293] / [Intel XE#2380]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2293]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#2136]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#2333]) +3 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#2136]) +21 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2313]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2136]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_getfb@getfb-repeated-different-handles: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2423]) +91 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_getfb@getfb-repeated-different-handles.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_getfb@getfb-repeated-different-handles.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [PASS][73] -> [DMESG-FAIL][74] ([Intel XE#3468]) +2 other tests dmesg-fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2763]) +11 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2763]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#718]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][80] ([Intel XE#3527]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#1727] / [Intel XE#3468]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_rpm@basic-rte.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2446]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2446]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2446]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_psr@psr2-no-drrs.html * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1280] / [Intel XE#455]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [PASS][90] -> [TIMEOUT][91] ([Intel XE#1473]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][92] -> [TIMEOUT][93] ([Intel XE#1473] / [Intel XE#2472]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2322]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_basic@no-exec-null-defer-bind: - shard-bmg: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#1727]) +3 other tests dmesg-warn [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_basic@no-exec-null-defer-bind.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@xe_exec_basic@no-exec-null-defer-bind.html * igt@xe_exec_threads@threads-cm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1130]) +15 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html * igt@xe_exercise_blt@fast-copy-inc-dimension: - shard-bmg: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#1727] / [Intel XE#3468]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@xe_exercise_blt@fast-copy-inc-dimension.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@xe_exercise_blt@fast-copy-inc-dimension.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#3467] / [Intel XE#3468]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_module_load@load: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2457]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_module_load@load.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#2514]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html - shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#2514]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1130]) +10 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3hot-basic-exec: - shard-lnl: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#3184]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-1/igt@xe_pm@d3hot-basic-exec.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-5/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_pm@s3-basic.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_pm@s3-basic.html * igt@xe_pm_residency@idle-residency@gt0: - shard-bmg: NOTRUN -> [DMESG-WARN][111] ([Intel XE#3468]) +1 other test dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@xe_pm_residency@idle-residency@gt0.html * igt@xe_query@query-uc-fw-version-huc: - shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#1130]) +174 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_query@query-uc-fw-version-huc.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_query@query-uc-fw-version-huc.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][114] -> [SKIP][115] ([Intel XE#1130]) +204 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@core_getstats: - shard-dg2-set2: [SKIP][116] ([Intel XE#2423]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@core_getstats.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@core_getstats.html * igt@core_hotunplug@hotreplug: - shard-bmg: [SKIP][118] ([Intel XE#1885]) -> [PASS][119] +1 other test pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@core_hotunplug@hotreplug.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@core_hotunplug@hotreplug.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [FAIL][120] ([Intel XE#3339]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@pan: - shard-dg2-set2: [SKIP][122] ([Intel XE#2134]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@fbdev@pan.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@fbdev@pan.html * igt@fbdev@unaligned-read: - shard-bmg: [SKIP][124] ([Intel XE#2134]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@fbdev@unaligned-read.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@fbdev@unaligned-read.html * igt@kms_addfb_basic@addfb25-bad-modifier: - shard-bmg: [DMESG-WARN][126] ([Intel XE#1727]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_addfb_basic@addfb25-bad-modifier.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_addfb_basic@addfb25-bad-modifier.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][128] ([Intel XE#1426]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][130] ([Intel XE#2136]) -> [PASS][131] +16 other tests pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][132] ([Intel XE#2136]) -> [PASS][133] +24 other tests pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][134] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][135] +1 other test pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [INCOMPLETE][136] ([Intel XE#3468]) -> [PASS][137] +1 other test pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][138] ([Intel XE#3468]) -> [PASS][139] +3 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [SKIP][140] ([Intel XE#2291]) -> [PASS][141] +2 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-bmg: [DMESG-WARN][142] -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2-set2: [SKIP][144] ([Intel XE#2423] / [i915#2575]) -> [PASS][145] +64 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_draw_crc@fill-fb: - shard-dg2-set2: [SKIP][146] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][147] +7 other tests pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_draw_crc@fill-fb.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_draw_crc@fill-fb.html * igt@kms_flip@2x-flip-vs-panning: - shard-bmg: [SKIP][148] ([Intel XE#2316]) -> [PASS][149] +1 other test pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][150] ([Intel XE#3468]) -> [PASS][151] +36 other tests pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-bmg: [DMESG-WARN][152] ([Intel XE#2955] / [Intel XE#3468]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [SKIP][154] ([Intel XE#2423]) -> [PASS][155] +97 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][156] ([Intel XE#3012]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pm_rpm@cursor: - shard-bmg: [SKIP][158] ([Intel XE#2446]) -> [PASS][159] +2 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_rpm@cursor.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: [SKIP][160] ([Intel XE#2446]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_pm_rpm@universal-planes.html * igt@kms_properties@connector-properties-legacy: - shard-bmg: [INCOMPLETE][162] ([Intel XE#1727]) -> [PASS][163] +1 other test pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_properties@connector-properties-legacy.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: [FAIL][164] -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][166] ([Intel XE#899]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][168] ([Intel XE#1499]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_vrr@negative-basic.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_vrr@negative-basic.html * igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate: - shard-dg2-set2: [SKIP][170] ([Intel XE#1130]) -> [PASS][171] +119 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][172] ([Intel XE#1130]) -> [PASS][173] +224 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_module_load@reload: - shard-bmg: [FAIL][174] -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_module_load@reload.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@xe_module_load@reload.html * igt@xe_pm@d3hot-mocs: - shard-bmg: [DMESG-WARN][176] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][177] +9 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_pm@d3hot-mocs.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@xe_pm@d3hot-mocs.html * igt@xe_pm_residency@gt-c6-freeze: - shard-lnl: [DMESG-WARN][178] ([Intel XE#3088]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-lnl-8/igt@xe_pm_residency@gt-c6-freeze.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze.html #### Warnings #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [DMESG-WARN][180] ([Intel XE#3468]) -> [SKIP][181] ([Intel XE#1885]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][182] ([Intel XE#623]) -> [SKIP][183] ([Intel XE#2423] / [i915#2575]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bad-pitch-999: - shard-bmg: [SKIP][184] ([Intel XE#2423]) -> [DMESG-WARN][185] ([Intel XE#1727]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-999.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_addfb_basic@bad-pitch-999.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][186] ([Intel XE#873]) -> [SKIP][187] ([Intel XE#2423] / [i915#2575]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-overlay-legacy: - shard-dg2-set2: [SKIP][188] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][189] ([Intel XE#1727]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_atomic@plane-overlay-legacy.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_atomic@plane-overlay-legacy.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][190] ([Intel XE#2385]) -> [SKIP][191] ([Intel XE#2423]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-bmg: [INCOMPLETE][192] ([Intel XE#1727] / [Intel XE#2613]) -> [SKIP][193] ([Intel XE#2423]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][194] ([Intel XE#2136]) -> [SKIP][195] ([Intel XE#2327]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg2-set2: [SKIP][196] ([Intel XE#316]) -> [SKIP][197] ([Intel XE#2136] / [Intel XE#2351]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][198] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][199] ([Intel XE#316]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: [DMESG-WARN][200] ([Intel XE#3468]) -> [SKIP][201] ([Intel XE#2136]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: [SKIP][202] ([Intel XE#2327]) -> [SKIP][203] ([Intel XE#2136]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-90.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][204] ([Intel XE#316]) -> [SKIP][205] ([Intel XE#2136]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][206] ([Intel XE#2136]) -> [SKIP][207] ([Intel XE#316]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][209] ([Intel XE#607]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][210] ([Intel XE#610]) -> [SKIP][211] ([Intel XE#2136]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][212] ([Intel XE#1124]) -> [SKIP][213] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][214] ([Intel XE#1124]) -> [SKIP][215] ([Intel XE#2136]) +11 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#2136]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][218] ([Intel XE#2136]) -> [SKIP][219] ([Intel XE#1124]) +11 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][220] ([Intel XE#2136]) -> [SKIP][221] ([Intel XE#1124]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][222] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][223] ([Intel XE#1124]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][224] ([Intel XE#2136]) -> [SKIP][225] ([Intel XE#2328]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][226] ([Intel XE#2136]) -> [SKIP][227] ([Intel XE#607]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#2423] / [i915#2575]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][230] ([Intel XE#2423] / [i915#2575]) -> [SKIP][231] ([Intel XE#367]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][232] ([Intel XE#2191]) -> [SKIP][233] ([Intel XE#2423] / [i915#2575]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][234] ([Intel XE#2423]) -> [SKIP][235] ([Intel XE#2314] / [Intel XE#2894]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][236] ([Intel XE#367]) -> [SKIP][237] ([Intel XE#2423]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][238] ([Intel XE#2423]) -> [SKIP][239] ([Intel XE#367]) +4 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: [SKIP][240] ([Intel XE#2887]) -> [SKIP][241] ([Intel XE#2136]) +15 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][242] ([Intel XE#2907]) -> [SKIP][243] ([Intel XE#2136]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][244] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][245] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][246] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][247] ([Intel XE#2136]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][248] ([Intel XE#3442]) -> [SKIP][249] ([Intel XE#2136]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][250] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][251] ([Intel XE#2136]) +9 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][254] ([Intel XE#2136]) -> [SKIP][255] ([Intel XE#3432]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][256] ([Intel XE#2136]) -> [SKIP][257] ([Intel XE#2907]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][258] ([Intel XE#2136]) -> [SKIP][259] ([Intel XE#2887]) +17 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][261] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: [SKIP][262] ([Intel XE#2724]) -> [SKIP][263] ([Intel XE#2136]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cdclk@mode-transition.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: [SKIP][264] ([Intel XE#2423]) -> [SKIP][265] ([Intel XE#2325]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][266] ([Intel XE#306]) -> [SKIP][267] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: [SKIP][268] ([Intel XE#2325]) -> [SKIP][269] ([Intel XE#2423]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_chamelium_color@ctm-negative.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][270] ([Intel XE#2423] / [i915#2575]) -> [SKIP][271] ([Intel XE#306]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_chamelium_color@degamma.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][272] ([Intel XE#2423]) -> [SKIP][273] ([Intel XE#2252]) +12 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: [SKIP][274] ([Intel XE#373]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-read.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [SKIP][277] ([Intel XE#373]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_chamelium_edid@hdmi-mode-timings.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][278] ([Intel XE#2252]) -> [SKIP][279] ([Intel XE#2423]) +15 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][280] ([Intel XE#2423]) -> [SKIP][281] ([Intel XE#2341]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@content-type-change.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][282] ([Intel XE#2423]) -> [SKIP][283] ([Intel XE#2390]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][284] ([Intel XE#307]) -> [SKIP][285] ([Intel XE#2423] / [i915#2575]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][286] ([Intel XE#2423] / [i915#2575]) -> [FAIL][287] ([Intel XE#1178]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_content_protection@legacy.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][288] ([Intel XE#1178]) -> [SKIP][289] ([Intel XE#2423]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_content_protection@lic-type-0.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2-set2: [FAIL][290] ([Intel XE#1178]) -> [SKIP][291] ([Intel XE#2423] / [i915#2575]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_content_protection@srm.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][292] ([Intel XE#1188]) -> [SKIP][293] ([Intel XE#2423]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_content_protection@uevent.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][294] ([Intel XE#2423] / [i915#2575]) -> [SKIP][295] ([Intel XE#308]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: [SKIP][296] ([Intel XE#2321]) -> [SKIP][297] ([Intel XE#2423]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][298] ([Intel XE#2320]) -> [SKIP][299] ([Intel XE#2423]) +6 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][300] ([Intel XE#308]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][302] ([Intel XE#2423]) -> [SKIP][303] ([Intel XE#2320]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][304] ([Intel XE#2423]) -> [SKIP][305] ([Intel XE#2321]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: [SKIP][306] ([Intel XE#2423]) -> [SKIP][307] ([Intel XE#2286]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: [SKIP][308] ([Intel XE#2286]) -> [SKIP][309] ([Intel XE#2423]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2-set2: [SKIP][310] ([Intel XE#2423] / [i915#2575]) -> [SKIP][311] ([Intel XE#323]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [SKIP][312] ([Intel XE#2423]) -> [DMESG-WARN][313] ([Intel XE#3468]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [SKIP][314] ([Intel XE#2291]) -> [SKIP][315] ([Intel XE#2423]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [DMESG-WARN][316] ([Intel XE#3468]) -> [SKIP][317] ([Intel XE#2423]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [DMESG-FAIL][318] ([Intel XE#3468]) -> [SKIP][319] ([Intel XE#2423]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][320] ([Intel XE#323]) -> [SKIP][321] ([Intel XE#2423] / [i915#2575]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][322] ([Intel XE#1508]) -> [SKIP][323] ([Intel XE#2136]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#307]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][326] ([Intel XE#3009]) -> [SKIP][327] ([Intel XE#2423]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_dp_aux_dev.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][328] ([Intel XE#2244]) -> [SKIP][329] ([Intel XE#2136]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#2244]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][332] ([Intel XE#1695]) -> [SKIP][333] ([Intel XE#2136]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [INCOMPLETE][334] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][335] ([Intel XE#2136]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_fbcon_fbt@fbc-suspend.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][336] ([Intel XE#776]) -> [SKIP][337] ([Intel XE#2136]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][338] ([Intel XE#701]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_feature_discovery@chamelium.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][340] ([Intel XE#2374]) -> [SKIP][341] ([Intel XE#2423]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_feature_discovery@psr1.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#1135]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_feature_discovery@psr2.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][344] ([Intel XE#2882]) -> [SKIP][345] ([Intel XE#2423]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [FAIL][347] ([Intel XE#301]) +1 other test fail [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][348] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468] / [Intel XE#3561]) -> [ABORT][349] ([Intel XE#3468]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend.html - shard-dg2-set2: [SKIP][350] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][351] ([Intel XE#1727] / [Intel XE#3468]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3: - shard-bmg: [DMESG-FAIL][352] ([Intel XE#1727] / [Intel XE#3468]) -> [ABORT][353] ([Intel XE#3468]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][354] ([Intel XE#2705] / [Intel XE#2955] / [Intel XE#3468]) -> [DMESG-WARN][355] ([Intel XE#2705] / [Intel XE#3468]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2-set2: [SKIP][356] ([Intel XE#2136]) -> [DMESG-WARN][357] ([Intel XE#1727]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-bmg: [INCOMPLETE][358] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][359] ([Intel XE#2136]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: [SKIP][360] ([Intel XE#2136]) -> [SKIP][361] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][362] ([Intel XE#455]) -> [SKIP][363] ([Intel XE#2136] / [Intel XE#2351]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: [SKIP][364] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][365] ([Intel XE#2136]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][366] ([Intel XE#2380]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][368] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][369] ([Intel XE#455]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][370] ([Intel XE#455]) -> [SKIP][371] ([Intel XE#2136]) +4 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#455]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][374] ([Intel XE#2311]) -> [SKIP][375] ([Intel XE#2136]) +26 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][376] ([Intel XE#651]) -> [SKIP][377] ([Intel XE#2136]) +25 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][378] ([Intel XE#2312]) -> [SKIP][379] ([Intel XE#2311]) +4 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][380] ([Intel XE#2136]) -> [SKIP][381] ([Intel XE#2311]) +32 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][382] ([Intel XE#651]) -> [SKIP][383] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [FAIL][385] ([Intel XE#2333]) +3 other tests fail [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][386] ([Intel XE#3468]) -> [FAIL][387] ([Intel XE#2333]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][388] ([Intel XE#2136]) -> [SKIP][389] ([Intel XE#2312]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][390] ([Intel XE#2136]) -> [INCOMPLETE][391] ([Intel XE#1727]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][392] ([Intel XE#2136]) -> [INCOMPLETE][393] ([Intel XE#2050]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][394] ([Intel XE#2136]) -> [FAIL][395] ([Intel XE#2333]) +10 other tests fail [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][396] ([Intel XE#2333]) -> [SKIP][397] ([Intel XE#2136]) +15 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#651]) +17 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][400] ([Intel XE#2312]) -> [SKIP][401] ([Intel XE#2136]) +8 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][402] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][403] ([Intel XE#651]) +6 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][404] ([Intel XE#658]) -> [SKIP][405] ([Intel XE#2136] / [Intel XE#2351]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][406] ([Intel XE#2312]) -> [SKIP][407] ([Intel XE#2313]) +6 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][408] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][409] ([Intel XE#653]) +6 other tests skip [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][410] ([Intel XE#2350]) -> [SKIP][411] ([Intel XE#2136]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#2313]) +38 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][414] ([Intel XE#2313]) -> [SKIP][415] ([Intel XE#2312]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][416] ([Intel XE#653]) -> [SKIP][417] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][418] ([Intel XE#2313]) -> [SKIP][419] ([Intel XE#2136]) +31 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2-set2: [SKIP][420] ([Intel XE#2136]) -> [SKIP][421] ([Intel XE#653]) +17 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][422] ([Intel XE#653]) -> [SKIP][423] ([Intel XE#2136]) +29 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][424] ([Intel XE#2423]) -> [SKIP][425] ([Intel XE#2502]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][426] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][427] ([Intel XE#2423]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][428] ([Intel XE#2136]) -> [SKIP][429] ([Intel XE#2934]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][430] ([Intel XE#2925]) -> [SKIP][431] ([Intel XE#2136]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][432] ([Intel XE#2136]) -> [SKIP][433] ([Intel XE#2927]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][434] ([Intel XE#346]) -> [SKIP][435] ([Intel XE#2136]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][436] ([Intel XE#2486]) -> [SKIP][437] ([Intel XE#2423]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-bmg: [SKIP][438] ([Intel XE#2423]) -> [SKIP][439] ([Intel XE#2486]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_panel_fitting@legacy.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][440] ([Intel XE#2423] / [i915#2575]) -> [SKIP][441] ([Intel XE#455]) +5 other tests skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: [SKIP][442] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][443] ([Intel XE#2423] / [i915#2575]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2-set2: [DMESG-WARN][444] ([Intel XE#1727]) -> [SKIP][445] ([Intel XE#2423] / [i915#2575]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][446] ([Intel XE#2423] / [i915#2575]) -> [SKIP][447] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: [SKIP][448] ([Intel XE#2763]) -> [SKIP][449] ([Intel XE#2423]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-bmg: [SKIP][450] ([Intel XE#2423]) -> [SKIP][451] ([Intel XE#2763]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][452] ([Intel XE#870]) -> [SKIP][453] ([Intel XE#2136]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-bmg: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#870]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_backlight@fade.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][456] ([Intel XE#870]) -> [SKIP][457] ([Intel XE#2136]) +3 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][458] ([Intel XE#1122]) -> [SKIP][459] ([Intel XE#2136] / [Intel XE#2351]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#2392]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][462] ([Intel XE#1430]) -> [SKIP][463] ([Intel XE#2136]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2-set2: [SKIP][464] ([Intel XE#2136]) -> [FAIL][465] ([Intel XE#3527]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][466] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][467] ([Intel XE#2446]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [SKIP][468] ([Intel XE#2446]) -> [DMESG-WARN][469] ([Intel XE#3468]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][470] ([Intel XE#1489]) -> [SKIP][471] ([Intel XE#2136]) +6 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][472] ([Intel XE#2136]) -> [SKIP][473] ([Intel XE#1489]) +5 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][474] ([Intel XE#1489]) -> [SKIP][475] ([Intel XE#2136]) +9 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][476] ([Intel XE#2136]) -> [SKIP][477] ([Intel XE#1489]) +5 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][478] ([Intel XE#2387]) -> [SKIP][479] ([Intel XE#2136]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][480] ([Intel XE#1122]) -> [SKIP][481] ([Intel XE#2136]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: [SKIP][482] ([Intel XE#2136]) -> [SKIP][483] ([Intel XE#2387]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#1122]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][486] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][487] ([Intel XE#2136]) +9 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-5/igt@kms_psr@fbc-psr-primary-render.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: [SKIP][488] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][489] ([Intel XE#2136]) +12 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][490] ([Intel XE#2136]) -> [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-cursor-render: - shard-bmg: [SKIP][492] ([Intel XE#2136]) -> [SKIP][493] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr@pr-cursor-render.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][494] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][495] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_psr@psr-dpms.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][496] ([Intel XE#2351]) -> [SKIP][497] ([Intel XE#2850] / [Intel XE#929]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][498] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][499] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_psr@psr-sprite-blt.html * igt@kms_psr@psr2-primary-render: - shard-bmg: [SKIP][500] ([Intel XE#2234]) -> [SKIP][501] ([Intel XE#2136]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@kms_psr@psr2-primary-render.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][502] ([Intel XE#2136]) -> [SKIP][503] ([Intel XE#2414]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][504] ([Intel XE#3414]) -> [SKIP][505] ([Intel XE#2423]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_rotation_crc@bad-tiling.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-bmg: [SKIP][506] ([Intel XE#2423]) -> [DMESG-FAIL][507] ([Intel XE#3468]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][508] ([Intel XE#2423] / [i915#2575]) -> [SKIP][509] ([Intel XE#1127]) +2 other tests skip [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][510] ([Intel XE#2423]) -> [SKIP][511] ([Intel XE#2330]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][512] ([Intel XE#2423] / [i915#2575]) -> [SKIP][513] ([Intel XE#3414]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][514] ([Intel XE#2330]) -> [SKIP][515] ([Intel XE#2423]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][516] ([Intel XE#3414]) -> [SKIP][517] ([Intel XE#2423] / [i915#2575]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: [SKIP][518] ([Intel XE#2423]) -> [SKIP][519] ([Intel XE#3414]) +3 other tests skip [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][520] ([Intel XE#2423]) -> [SKIP][521] ([Intel XE#2413]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][522] ([Intel XE#2423]) -> [SKIP][523] ([Intel XE#1435]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][524] ([Intel XE#2423] / [i915#2575]) -> [FAIL][525] ([Intel XE#1729]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][526] ([Intel XE#2423] / [i915#2575]) -> [SKIP][527] ([Intel XE#1500]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@cmrr: - shard-bmg: [SKIP][528] ([Intel XE#2168]) -> [SKIP][529] ([Intel XE#2423]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@kms_vrr@cmrr.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-suspend: - shard-bmg: [SKIP][530] ([Intel XE#2423]) -> [SKIP][531] ([Intel XE#1499]) +3 other tests skip [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@kms_vrr@flip-suspend.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][532] ([Intel XE#455]) -> [SKIP][533] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_vrr@flipline.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_vrr@flipline.html - shard-bmg: [SKIP][534] ([Intel XE#1499]) -> [SKIP][535] ([Intel XE#2423]) +1 other test skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@kms_vrr@flipline.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][536] ([Intel XE#2168]) -> [SKIP][537] ([Intel XE#2423] / [i915#2575]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_vrr@lobf.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][538] ([Intel XE#756]) -> [SKIP][539] ([Intel XE#2423] / [i915#2575]) +1 other test skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][540] ([Intel XE#2423] / [i915#2575]) -> [SKIP][541] ([Intel XE#756]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][542] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][543] ([Intel XE#2423] / [i915#2575]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-bmg: [SKIP][544] ([Intel XE#2423]) -> [SKIP][545] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#1280] / [Intel XE#455]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#1123]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][550] ([Intel XE#1123]) -> [SKIP][551] ([Intel XE#1130]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_eudebug@basic-client-th: - shard-dg2-set2: [SKIP][552] ([Intel XE#2905]) -> [SKIP][553] ([Intel XE#1130]) +12 other tests skip [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_eudebug@basic-client-th.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_eudebug@basic-client-th.html * igt@xe_eudebug@basic-vm-bind-vm-destroy: - shard-bmg: [SKIP][554] ([Intel XE#1130]) -> [SKIP][555] ([Intel XE#2905]) +15 other tests skip [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-vm-destroy.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-vm-destroy.html * igt@xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][556] ([Intel XE#1130]) -> [SKIP][557] ([Intel XE#2905]) +10 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_eudebug@sysfs-toggle.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_eudebug@sysfs-toggle.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-bmg: [SKIP][558] ([Intel XE#2905]) -> [SKIP][559] ([Intel XE#1130]) +9 other tests skip [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-bmg: [SKIP][560] ([Intel XE#1130]) -> [DMESG-WARN][561] ([Intel XE#3468]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [SKIP][562] ([Intel XE#1130]) -> [FAIL][563] ([Intel XE#2364]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][564] ([Intel XE#1473] / [Intel XE#402]) -> [SKIP][565] ([Intel XE#1130]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [FAIL][567] ([Intel XE#1600]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html - shard-bmg: [DMESG-FAIL][568] ([Intel XE#3468]) -> [FAIL][569] ([Intel XE#2364]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_evict@evict-large-multi-vm-cm.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-7/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [TIMEOUT][570] ([Intel XE#1473]) -> [SKIP][571] ([Intel XE#1130]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_balancer@twice-parallel-userptr-invalidate: - shard-bmg: [DMESG-WARN][572] ([Intel XE#1727]) -> [SKIP][573] ([Intel XE#1130]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_exec_balancer@twice-parallel-userptr-invalidate.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_exec_balancer@twice-parallel-userptr-invalidate.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][574] ([Intel XE#1130]) -> [SKIP][575] ([Intel XE#2322]) +13 other tests skip [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][576] ([Intel XE#2322]) -> [SKIP][577] ([Intel XE#1130]) +13 other tests skip [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@no-exec-bindexecqueue: - shard-dg2-set2: [SKIP][578] ([Intel XE#1130]) -> [DMESG-WARN][579] ([Intel XE#1727]) +2 other tests dmesg-warn [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_exec_basic@no-exec-bindexecqueue.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_exec_basic@no-exec-bindexecqueue.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][580] ([Intel XE#1130]) -> [SKIP][581] ([Intel XE#288]) +22 other tests skip [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][582] ([Intel XE#288]) -> [SKIP][583] ([Intel XE#1130]) +28 other tests skip [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [SKIP][584] ([Intel XE#1130]) -> [DMESG-WARN][585] ([Intel XE#3467] / [Intel XE#3468]) [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-dg2-set2: [DMESG-WARN][586] ([Intel XE#3343]) -> [SKIP][587] ([Intel XE#1130]) [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [SKIP][588] ([Intel XE#1130]) -> [DMESG-WARN][589] ([Intel XE#3343] / [Intel XE#3468]) [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][590] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][591] ([Intel XE#3467]) [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][592] ([Intel XE#3343] / [Intel XE#3468]) -> [SKIP][593] ([Intel XE#1130]) [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html - shard-dg2-set2: [SKIP][594] ([Intel XE#1130]) -> [DMESG-WARN][595] ([Intel XE#3343]) [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [SKIP][596] ([Intel XE#1130]) -> [FAIL][597] ([Intel XE#3499]) [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [SKIP][598] ([Intel XE#1130]) -> [DMESG-FAIL][599] ([Intel XE#3467] / [Intel XE#3468]) [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [SKIP][600] ([Intel XE#1130]) -> [DMESG-WARN][601] ([Intel XE#3467]) +3 other tests dmesg-warn [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [DMESG-WARN][602] ([Intel XE#3467]) -> [SKIP][603] ([Intel XE#1130]) +1 other test skip [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [DMESG-WARN][604] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][605] ([Intel XE#1130]) +1 other test skip [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_media_fill@media-fill: - shard-bmg: [SKIP][606] ([Intel XE#1130]) -> [SKIP][607] ([Intel XE#2459] / [Intel XE#2596]) [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_media_fill@media-fill.html [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-6/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-bmg: [SKIP][608] ([Intel XE#586]) -> [SKIP][609] ([Intel XE#1130]) [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_mmap@small-bar.html [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [DMESG-WARN][610] ([Intel XE#3467]) -> [FAIL][611] ([Intel XE#3546]) [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_module_load@reload-no-display.html [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_module_load@reload-no-display.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][612] ([Intel XE#3573]) -> [SKIP][613] ([Intel XE#1130]) +7 other tests skip [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_oa@invalid-oa-metric-set-id.html [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: [SKIP][614] ([Intel XE#1130]) -> [SKIP][615] ([Intel XE#3573]) +6 other tests skip [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_oa@invalid-remove-userspace-config.html [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_oa@oa-exponents: - shard-bmg: [DMESG-WARN][616] ([Intel XE#3468]) -> [SKIP][617] ([Intel XE#1130]) +5 other tests skip [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-3/igt@xe_oa@oa-exponents.html [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-regs-whitelisted: - shard-bmg: [SKIP][618] ([Intel XE#1130]) -> [FAIL][619] ([Intel XE#2514]) [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][620] ([Intel XE#2248]) -> [SKIP][621] ([Intel XE#1130]) [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][622] ([Intel XE#1337]) -> [SKIP][623] ([Intel XE#1130]) [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][624] ([Intel XE#1130]) -> [SKIP][625] ([Intel XE#977]) [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_pat@pat-index-xe2.html [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][626] ([Intel XE#1130]) -> [SKIP][627] ([Intel XE#2245]) [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_pat@pat-index-xelp.html [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-basic: - shard-bmg: [SKIP][628] ([Intel XE#1130]) -> [SKIP][629] ([Intel XE#2284]) [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_pm@d3cold-basic.html [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-5/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][630] ([Intel XE#1130]) -> [SKIP][631] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: [SKIP][632] ([Intel XE#1130]) -> [DMESG-WARN][633] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_pm@s2idle-basic.html [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][634] ([Intel XE#2284]) -> [SKIP][635] ([Intel XE#1130]) +1 other test skip [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-exec-after: - shard-bmg: [DMESG-WARN][636] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][637] ([Intel XE#1130]) +1 other test skip [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-4/igt@xe_pm@s2idle-exec-after.html [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [SKIP][638] ([Intel XE#1130]) -> [DMESG-WARN][639] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +2 other tests dmesg-warn [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_pm@s3-basic-exec.html [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][640] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][641] ([Intel XE#1130]) +1 other test skip [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][642] ([Intel XE#1130]) -> [SKIP][643] ([Intel XE#579]) [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html - shard-bmg: [SKIP][644] ([Intel XE#579]) -> [SKIP][645] ([Intel XE#1130]) [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_pm@vram-d3cold-threshold.html [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][646] ([Intel XE#944]) -> [SKIP][647] ([Intel XE#1130]) +2 other tests skip [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-435/igt@xe_query@multigpu-query-engines.html [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-434/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][648] ([Intel XE#944]) -> [SKIP][649] ([Intel XE#1130]) +4 other tests skip [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-6/igt@xe_query@multigpu-query-hwconfig.html [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: [SKIP][650] ([Intel XE#1130]) -> [SKIP][651] ([Intel XE#944]) +1 other test skip [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_query@multigpu-query-topology.html [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-436/igt@xe_query@multigpu-query-topology.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: [SKIP][652] ([Intel XE#1130]) -> [SKIP][653] ([Intel XE#944]) +3 other tests skip [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-bmg-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-bmg-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [FAIL][654] ([Intel XE#2922]) -> [SKIP][655] ([Intel XE#1130]) [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_tlb@basic-tlb.html [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_tlb@basic-tlb.html * igt@xe_vm@large-userptr-split-misaligned-binds-1073741824: - shard-dg2-set2: [INCOMPLETE][656] -> [SKIP][657] ([Intel XE#1130]) [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-436/igt@xe_vm@large-userptr-split-misaligned-binds-1073741824.html [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-466/igt@xe_vm@large-userptr-split-misaligned-binds-1073741824.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [SKIP][658] ([Intel XE#1130]) -> [DMESG-WARN][659] ([Intel XE#2919]) [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8127/shard-dg2-466/igt@xe_wedged@basic-wedged.html [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/shard-dg2-435/igt@xe_wedged@basic-wedged.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3561 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8127 -> IGTPW_12209 * Linux: xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 -> xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f IGTPW_12209: 12209 IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198 xe-2286-24e36a5200d65a337d37827d4abcae11c9693f6f: 24e36a5200d65a337d37827d4abcae11c9693f6f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12209/index.html [-- Attachment #2: Type: text/html, Size: 195067 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for Update skip messages in scaling modes 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu ` (4 preceding siblings ...) 2024-11-27 20:40 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-27 21:25 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-27 21:25 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev == Series Details == Series: Update skip messages in scaling modes URL : https://patchwork.freedesktop.org/series/141850/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15754_full -> IGTPW_12209_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12209_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12209_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_12209/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12209_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@kms: - shard-tglu: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@gem_eio@kms.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][3] +5 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk2/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk9/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rpm@gem-execbuf-stress: - shard-rkl: [PASS][7] -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-2/igt@i915_pm_rpm@gem-execbuf-stress.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf-stress.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][9] -> [DMESG-FAIL][10] +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-3/igt@i915_selftest@live@gt_pm.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@i915_selftest@live@gt_pm.html Known issues ------------ Here are the changes found in IGTPW_12209_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#8411]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#6230]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#6230]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8411]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#9318]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#11078]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#11078]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#11078]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8414]) +25 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8414]) +20 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8414]) +32 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#7697]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4873]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#13008]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#13008]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@gem_ccs@large-ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#13008]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#13008]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#9323]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][34] ([i915#9323]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-10/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#7697]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#7697]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#7697]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#8562]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-10/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][39] ([i915#1099]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb1/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#8555]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#8555]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#8555]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@hostile: - shard-mtlp: NOTRUN -> [FAIL][43] ([i915#11980] / [i915#12580]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5882]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#280]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#280]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4771]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4771]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4525]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][51] ([i915#6117]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#6344]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][53] ([i915#6344]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-10/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3711]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3539] / [i915#4852]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#5107]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +22 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3281]) +19 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3281]) +20 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4812]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4537] / [i915#4812]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4860]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4860]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4860]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#2190]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613] / [i915#7582]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#4613]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#12193]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4565]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][79] ([i915#4613]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk5/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +22 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4077]) +28 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4083]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4083]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4083]) +7 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3282]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][88] ([i915#2658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@gem_pwrite@basic-random.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12964]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#13033]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#13033]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4270]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][95] ([i915#12917] / [i915#12964]) +1 other test timeout [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8428]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +11 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4079]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4885]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-8/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4885]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4885]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4079]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4079]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4879]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@gem_unfence_active_buffers.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4879]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4879]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3297]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#3297]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3297]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3297]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3297] / [i915#4880]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3297] / [i915#4880]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3281] / [i915#3297]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3297]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#2527]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#2527] / [i915#2856]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#2856]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#2856]) +6 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html - shard-rkl: NOTRUN -> [SKIP][121] ([i915#2527]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][122] ([i915#12817] / [i915#13010] / [i915#9820]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: NOTRUN -> [ABORT][123] ([i915#9820]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][124] ([i915#10131] / [i915#9820]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8436]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#8399]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#8399]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][128] ([i915#12455]) +1 other test incomplete [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#6590]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#6590]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-9/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6590]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][132] ([i915#2681]) +4 other tests warn [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][133] +315 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#11681] / [i915#6621]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#11681]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#11681]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_selftest@live@sanitycheck: - shard-tglu: [PASS][137] -> [ABORT][138] ([i915#13010]) +1 other test abort [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-tglu-6/igt@i915_selftest@live@sanitycheck.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@perf: - shard-rkl: NOTRUN -> [DMESG-WARN][139] ([i915#12964]) +24 other tests dmesg-warn [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@i915_selftest@perf.html - shard-tglu: NOTRUN -> [ABORT][140] ([i915#13010]) +2 other tests abort [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-2/igt@i915_selftest@perf.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: NOTRUN -> [DMESG-WARN][141] ([i915#12917] / [i915#12964]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][142] ([i915#7443]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6645]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html - shard-glk: NOTRUN -> [INCOMPLETE][144] ([i915#4817]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#7707]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4212]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#4212]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4212]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8709]) +11 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9531]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9531]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-snb: NOTRUN -> [SKIP][154] ([i915#1769]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#1769] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][156] ([i915#5956]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#5286]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5286]) +8 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#5286]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#5286]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286]) +10 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-mtlp: [PASS][162] -> [DMESG-FAIL][163] ([i915#11627]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][164] +43 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3638]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3638]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][167] +21 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-rkl: NOTRUN -> [ABORT][168] ([i915#10354]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#5190]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4538] / [i915#5190]) +15 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6095]) +139 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#12313]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#12313]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#12313]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#12313]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#12313]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#6095]) +100 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#12805]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#6095]) +114 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][183] -> [DMESG-FAIL][184] ([i915#12964]) +1 other test dmesg-fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#6095]) +16 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#10307] / [i915#6095]) +140 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs: - shard-snb: NOTRUN -> [SKIP][188] +119 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb7/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#6095]) +24 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#6095]) +205 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3742]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3742]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#11616] / [i915#7213]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3742]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#4087]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#7828]) +10 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#7828]) +14 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#7828]) +13 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#7828]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7828]) +13 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#7828]) +16 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#9979]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#7116] / [i915#9424]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3116] / [i915#3299]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3299]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3299]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3299]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3116] / [i915#3299]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#6944] / [i915#9424]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-3/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#6944] / [i915#9424]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#9424]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9424]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-2/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#9424]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#7118]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#7116]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6944]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#7118] / [i915#9424]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][218] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#7118] / [i915#9424]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#13049]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#13049]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8814]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#13049]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8814]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#4103] / [i915#4213]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][228] ([i915#4103]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#4213]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#4103] / [i915#4213] / [i915#4423]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - shard-glk: NOTRUN -> [FAIL][231] ([i915#2346]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg1: NOTRUN -> [DMESG-WARN][232] ([i915#4423]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9809]) +9 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][234] +21 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9067]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9067]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9067]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#4103]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][239] ([i915#12170]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][240] ([i915#11968]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9833]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9723]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9723]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#3804]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#1769] / [i915#3555] / [i915#3804]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3804]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3804]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#12402]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8812]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3840] / [i915#9688]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#3840]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#3840]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3840] / [i915#9688]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#3840]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#3840]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3840]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#3840]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#3840]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#3840]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#3840]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats.html - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#3840]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3840] / [i915#9053]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3840] / [i915#9053]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#3840] / [i915#9053]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: NOTRUN -> [DMESG-FAIL][265] ([i915#12964]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3469]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#1839]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#1839]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#9337]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9337]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#658]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][272] ([i915#658]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#4881]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9934]) +11 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-8/igt@kms_flip@2x-blocking-wf_vblank.html - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#3637]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#8381]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8381]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#8381]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3637]) +15 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][280] ([i915#12745] / [i915#4839]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][281] ([i915#4839]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#9934]) +8 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3637]) +10 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#9934]) +15 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#1982] / [i915#4839]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][286] ([i915#1982]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: [PASS][287] -> [INCOMPLETE][288] ([i915#4839]) +1 other test incomplete [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check@b-vga1: - shard-snb: [PASS][289] -> [FAIL][290] ([i915#11989]) +2 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-vga1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8810]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#2587] / [i915#2672]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#2672] / [i915#3555]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#2672] / [i915#3555]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#2587] / [i915#2672]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#2672] / [i915#3555] / [i915#8813]) +16 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#2587] / [i915#2672] / [i915#3555]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#2672] / [i915#3555]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#8810]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#2672]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#2672] / [i915#3555]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#2587] / [i915#2672]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#8813]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8810] / [i915#8813]) +3 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#2672]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8708]) +20 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][309] +82 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#1825]) +40 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-rkl: [PASS][311] -> [DMESG-WARN][312] ([i915#12964]) +39 other tests dmesg-warn [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#5439]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#10433] / [i915#3458]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3023]) +20 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#1825]) +60 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#8708]) +27 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#3458]) +34 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#8708]) +27 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#5439]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9766]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][322] ([i915#9766]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][323] +165 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#3458]) +32 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#5354]) +60 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][326] +32 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#8228]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8228]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#12713]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#3555] / [i915#8228]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-1/igt@kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#8228]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#3555] / [i915#8228]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8228]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#6403] / [i915#8826]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#9457]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#10656]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#10656]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-14/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#10656]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-10/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][339] ([i915#12388]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#12394]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#12339]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#12339]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#10656]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#12339]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#12339]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#6301]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-dg1: [PASS][347] -> [DMESG-WARN][348] ([i915#4423]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-17/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#12756]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][350] ([i915#13026]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#11614] / [i915#3582]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#8821]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#3555]) +7 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][355] ([i915#3555]) +10 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-18/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8806]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#5354] / [i915#9423]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#6953]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#12247]) +19 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#12247]) +49 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#12247]) +7 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#12247]) +13 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/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: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12247] / [i915#9423]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#12247] / [i915#6953]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#12247] / [i915#6953]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#12247] / [i915#3555] / [i915#9423]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#12247] / [i915#3555]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#12247] / [i915#6953]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/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-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#12247]) +36 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12343]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9812]) +3 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#5354]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#9685]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#3828]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#5978]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][378] ([i915#3361]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#3361]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][380] ([i915#9295]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html - shard-mtlp: NOTRUN -> [FAIL][381] ([i915#12913]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#9519]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#9519]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#4077]) +25 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#9519]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#9519]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#9519]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#6524] / [i915#6805]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][389] ([i915#6524]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][390] ([i915#6524]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][391] ([i915#6524]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][392] ([i915#6524]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][393] ([i915#11520]) +11 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][394] ([i915#11520]) +11 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#11520]) +10 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][396] ([i915#11520]) +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-snb4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][397] ([i915#9808]) +3 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][398] ([i915#12316]) +16 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#11520]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#11520]) +11 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#11520]) +13 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-13/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#9683]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][403] ([i915#9683]) +2 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][404] ([i915#4348]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#9683]) +3 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][406] ([i915#9688]) +42 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][407] ([i915#9732]) +40 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-8/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][408] ([i915#9732]) +10 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][409] ([i915#1072] / [i915#9732]) +44 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg1-12/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#1072] / [i915#9732]) +36 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][411] ([i915#1072] / [i915#9732]) +24 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-rkl-3/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][412] ([i915#4077] / [i915#9688]) +3 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-mtlp-7/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][413] ([i915#9685]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#4235]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][415] ([i915#12755]) +2 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][416] ([i915#12755]) +2 other tests skip [416]: https: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12209/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-12-09 7:04 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-27 19:05 [PATCH i-g-t 0/2] Update skip messages in scaling modes Naladala Ramanaidu 2024-11-27 19:05 ` [PATCH i-g-t 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu 2024-11-28 4:22 ` Samala, Pranay 2024-12-09 7:03 ` Sharma, Swati2 2024-11-27 19:05 ` [PATCH i-g-t 2/2] HAX patch do not merge Naladala Ramanaidu 2024-11-27 19:36 ` ✓ Xe.CI.BAT: success for Update skip messages in scaling modes Patchwork 2024-11-27 19:53 ` ✓ i915.CI.BAT: " Patchwork 2024-11-27 20:40 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-27 21:25 ` ✗ 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