* [PATCH i-g-t v1 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests
2024-12-05 12:25 [PATCH i-g-t v1 0/2] Update skip messages in scaling modes Naladala Ramanaidu
@ 2024-12-05 12:25 ` Naladala Ramanaidu
2024-12-05 14:50 ` Samala, Pranay
2024-12-05 12:25 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Naladala Ramanaidu @ 2024-12-05 12:25 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, 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.
V1: Fix alignment issues. (Pranay)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_scaling_modes.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c
index 5fd34c4b2..e8aeb7409 100644
--- a/tests/kms_scaling_modes.c
+++ b/tests/kms_scaling_modes.c
@@ -117,8 +117,11 @@ 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))
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* RE: [PATCH i-g-t v1 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests
2024-12-05 12:25 ` [PATCH i-g-t v1 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu
@ 2024-12-05 14:50 ` Samala, Pranay
2024-12-05 15:02 ` Naladala, Ramanaidu
0 siblings, 1 reply; 9+ messages in thread
From: Samala, Pranay @ 2024-12-05 14:50 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org
Hi Ramanaidu,
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: Thursday, December 5, 2024 5:55 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Samala, Pranay <pranay.samala@intel.com>; Naladala, Ramanaidu
> <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v1 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.
>
> V1: Fix alignment issues. (Pranay)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_scaling_modes.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c index
> 5fd34c4b2..e8aeb7409 100644
> --- a/tests/kms_scaling_modes.c
> +++ b/tests/kms_scaling_modes.c
> @@ -117,8 +117,11 @@ 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
i of igt should come below "
With this fixed, code LGTM.
Reviewed-by: Pranay Samala <pranay.samala@intel.com>
> continue;
> + }
>
> igt_output_set_pipe(output, pipe);
> if (!intel_pipe_output_combo_valid(display))
> --
> 2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH i-g-t v1 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests
2024-12-05 14:50 ` Samala, Pranay
@ 2024-12-05 15:02 ` Naladala, Ramanaidu
0 siblings, 0 replies; 9+ messages in thread
From: Naladala, Ramanaidu @ 2024-12-05 15:02 UTC (permalink / raw)
To: Samala, Pranay, igt-dev@lists.freedesktop.org
Hi Pranay,
Thanks for the review.
On 12/5/2024 8:20 PM, Samala, Pranay wrote:
> Hi Ramanaidu,
>
>> -----Original Message-----
>> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
>> Sent: Thursday, December 5, 2024 5:55 PM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Samala, Pranay <pranay.samala@intel.com>; Naladala, Ramanaidu
>> <ramanaidu.naladala@intel.com>
>> Subject: [PATCH i-g-t v1 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.
>>
>> V1: Fix alignment issues. (Pranay)
>>
>> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
>> ---
>> tests/kms_scaling_modes.c | 5 ++++-
>> 1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/tests/kms_scaling_modes.c b/tests/kms_scaling_modes.c index
>> 5fd34c4b2..e8aeb7409 100644
>> --- a/tests/kms_scaling_modes.c
>> +++ b/tests/kms_scaling_modes.c
>> @@ -117,8 +117,11 @@ 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
> i of igt should come below "
This alignment issue will be fix during merging. Since it's a
non-functional fix, there's no need to go through the CI cycle again.
>
> With this fixed, code LGTM.
> Reviewed-by: Pranay Samala <pranay.samala@intel.com>
>> continue;
>> + }
>>
>> igt_output_set_pipe(output, pipe);
>> if (!intel_pipe_output_combo_valid(display))
>> --
>> 2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t v1 2/2] HAX patch do not merge
2024-12-05 12:25 [PATCH i-g-t v1 0/2] Update skip messages in scaling modes Naladala Ramanaidu
2024-12-05 12:25 ` [PATCH i-g-t v1 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu
@ 2024-12-05 12:25 ` Naladala Ramanaidu
2024-12-06 2:32 ` ✓ i915.CI.BAT: success for Update skip messages in scaling modes (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Naladala Ramanaidu @ 2024-12-05 12:25 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, 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* ✓ i915.CI.BAT: success for Update skip messages in scaling modes (rev2)
2024-12-05 12:25 [PATCH i-g-t v1 0/2] Update skip messages in scaling modes Naladala Ramanaidu
2024-12-05 12:25 ` [PATCH i-g-t v1 1/2] tests/kms_scaling_modes: Add informative messages for skipped scaling mode tests Naladala Ramanaidu
2024-12-05 12:25 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu
@ 2024-12-06 2:32 ` Patchwork
2024-12-06 3:21 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-06 2:32 UTC (permalink / raw)
To: Naladala, Ramanaidu; +Cc: igt-dev
== Series Details ==
Series: Update skip messages in scaling modes (rev2)
URL : https://patchwork.freedesktop.org/series/141850/
State : success
== Summary ==
CI Bug Log - changes from IGT_8139 -> IGTPW_12257
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12257 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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/bat-adlp-11/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- bat-arlh-3: NOTRUN -> [SKIP][14] ([i915#11495]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-arlh-3/igt@kms_scaling_modes@scaling-mode-none.html
- bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#3555]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-dg1-7/igt@kms_scaling_modes@scaling-mode-none.html
- fi-glk-j4005: NOTRUN -> [SKIP][16] +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/fi-glk-j4005/igt@kms_scaling_modes@scaling-mode-none.html
- bat-adlp-9: NOTRUN -> [SKIP][17] ([i915#3555]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-adlp-9/igt@kms_scaling_modes@scaling-mode-none.html
- bat-twl-2: NOTRUN -> [SKIP][18] ([i915#11495])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-twl-2/igt@kms_scaling_modes@scaling-mode-none.html
- bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#3555]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-dg2-11/igt@kms_scaling_modes@scaling-mode-none.html
- bat-rpls-4: NOTRUN -> [SKIP][20] ([i915#3555]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-rpls-4/igt@kms_scaling_modes@scaling-mode-none.html
- fi-kbl-7567u: NOTRUN -> [SKIP][21] +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/fi-kbl-7567u/igt@kms_scaling_modes@scaling-mode-none.html
- fi-cfl-8700k: NOTRUN -> [SKIP][22] +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/fi-cfl-8700k/igt@kms_scaling_modes@scaling-mode-none.html
- bat-twl-1: NOTRUN -> [SKIP][23] ([i915#11495])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-twl-1/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_12257/fi-kbl-8809g/igt@kms_scaling_modes@scaling-mode-none.html
- bat-dg2-14: NOTRUN -> [SKIP][25] ([i915#3555]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-dg2-14/igt@kms_scaling_modes@scaling-mode-none.html
- fi-bsw-nick: NOTRUN -> [SKIP][26] +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/fi-bsw-nick/igt@kms_scaling_modes@scaling-mode-none.html
- bat-kbl-2: NOTRUN -> [SKIP][27] +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-kbl-2/igt@kms_scaling_modes@scaling-mode-none.html
- bat-arls-5: NOTRUN -> [SKIP][28] ([i915#12732]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-arls-5/igt@kms_scaling_modes@scaling-mode-none.html
- bat-rplp-1: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#5030])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-rplp-1/igt@kms_scaling_modes@scaling-mode-none.html
- bat-arlh-2: NOTRUN -> [SKIP][30] ([i915#11346]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-arlh-2/igt@kms_scaling_modes@scaling-mode-none.html
- fi-rkl-11600: NOTRUN -> [SKIP][31] ([i915#3555]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/fi-rkl-11600/igt@kms_scaling_modes@scaling-mode-none.html
- bat-jsl-3: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#5030])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-jsl-3/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/bat-rplp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
- bat-jsl-3: NOTRUN -> [SKIP][43] ([i915#5030]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-jsl-3/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][44] ([i915#5030]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-b-edp-1.html
- bat-jsl-1: NOTRUN -> [SKIP][45] ([i915#5030]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/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][46] ([i915#11495] / [i915#5030]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-twl-2/igt@kms_scaling_modes@scaling-mode-none@pipe-c-edp-1.html
- bat-twl-1: NOTRUN -> [SKIP][47] ([i915#11495] / [i915#5030]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-twl-1/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][48] ([i915#5030] / [i915#9041])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-mtlp-9}: [DMESG-WARN][49] -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-mtlp-9/igt@i915_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/bat-mtlp-9/igt@i915_module_load@load.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_8139 -> IGTPW_12257
* Linux: CI_DRM_15796 -> CI_DRM_15798
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15798: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12257: 8300741ee6be9aa2661f5585f1f6b2c2d9450d4a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread* ✓ Xe.CI.BAT: success for Update skip messages in scaling modes (rev2)
2024-12-05 12:25 [PATCH i-g-t v1 0/2] Update skip messages in scaling modes Naladala Ramanaidu
` (2 preceding siblings ...)
2024-12-06 2:32 ` ✓ i915.CI.BAT: success for Update skip messages in scaling modes (rev2) Patchwork
@ 2024-12-06 3:21 ` Patchwork
2024-12-06 4:08 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06 5:58 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-06 3:21 UTC (permalink / raw)
To: Naladala, Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3843 bytes --]
== Series Details ==
Series: Update skip messages in scaling modes (rev2)
URL : https://patchwork.freedesktop.org/series/141850/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12257_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12257_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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_12257/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_8139 -> IGTPW_12257
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
IGTPW_12257: 8300741ee6be9aa2661f5585f1f6b2c2d9450d4a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/index.html
[-- Attachment #2: Type: text/html, Size: 4721 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* ✗ i915.CI.Full: failure for Update skip messages in scaling modes (rev2)
2024-12-05 12:25 [PATCH i-g-t v1 0/2] Update skip messages in scaling modes Naladala Ramanaidu
` (3 preceding siblings ...)
2024-12-06 3:21 ` ✓ Xe.CI.BAT: " Patchwork
@ 2024-12-06 4:08 ` Patchwork
2024-12-06 5:58 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-06 4:08 UTC (permalink / raw)
To: Naladala, Ramanaidu; +Cc: igt-dev
== Series Details ==
Series: Update skip messages in scaling modes (rev2)
URL : https://patchwork.freedesktop.org/series/141850/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15798_full -> IGTPW_12257_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12257_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12257_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_12257/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12257_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@debugfs-reader:
- shard-snb: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb7/igt@i915_suspend@debugfs-reader.html
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-1.html
New tests
---------
New tests have been introduced between CI_DRM_15798_full and IGTPW_12257_full:
### New IGT tests (7) ###
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [2.23, 2.26] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [2.10, 2.26] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [2.09, 2.24] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [2.77] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.08] s
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12257_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-14/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#7697]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][7] ([i915#7297]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-3/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-5/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-5/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@hostile:
- shard-rkl: [PASS][16] -> [FAIL][17] ([i915#11980] / [i915#12580])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15798/shard-rkl-3/igt@gem_ctx_persistence@hostile.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb1/igt@gem_ctx_persistence@processes.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][19] ([i915#10030] / [i915#7975] / [i915#8213])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-2/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][20] ([i915#7975] / [i915#8213])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@noheartbeat:
- shard-tglu-1: NOTRUN -> [ABORT][21] ([i915#13218]) +2 other tests abort
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-14/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#5107])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3281]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281]) +6 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +9 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4537] / [i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4613]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#4613]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][35] ([i915#4613]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk5/igt@gem_lmem_swapping@random-engines.html
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4077]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4077]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_gtt@medium-copy:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4077]) +6 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@gem_mmap_gtt@medium-copy.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4083]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-5/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4083]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4083]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pwrite_snooped:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3282]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@gem_pwrite_snooped.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3282]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@gem_pwrite_snooped.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3282]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-4/igt@gem_pwrite_snooped.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: NOTRUN -> [TIMEOUT][47] ([i915#12917] / [i915#12964])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#5190] / [i915#8428]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#8428]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4079])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4079])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4079])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3297]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#3297]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3297]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3297] / [i915#4880])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3281] / [i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@gem_userptr_blits@relocations.html
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3281] / [i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-7/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281] / [i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281] / [i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#2856])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#2527]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#2527]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-14/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-2/igt@gen9_exec_parse@bb-start-param.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#7091])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8436])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#8399])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#8399])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-10/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][72] ([i915#3591])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#11681] / [i915#6621])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#11681] / [i915#6621])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][75] ([i915#7790])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb7/igt@i915_pm_rps@reset.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][76] ([i915#7443])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#6645])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][78] ([i915#4817])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk9/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4215])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4212]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4212])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4212])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#6228])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6228])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#5286]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4538] / [i915#5286]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#5286]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][88] +21 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3638]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3638]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5190]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][92] +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4538])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6187])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-glk: NOTRUN -> [SKIP][96] +206 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#10307] / [i915#10434] / [i915#6095])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6095]) +44 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#10307] / [i915#6095]) +48 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#6095]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#6095]) +64 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#12796]) +1 other test incomplete
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#12313])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#12313])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#12313])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#12313])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#12313])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#6095]) +45 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#6095]) +64 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#7828]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#7828]) +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#7828]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#7828]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#7828]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#6944] / [i915#9424])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-5/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#9424])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#9424])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#9424])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6944] / [i915#9424]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-4/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#7118] / [i915#9424])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#7118] / [i915#9424])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_content_protection@uevent.html
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3555]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3555] / [i915#8814]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#3555]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#13049]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#13049])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#13049]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#13049]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#13049])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-snb: NOTRUN -> [ABORT][132] ([i915#13242]) +13 other tests abort
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb4/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#9809])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#9833])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#9723])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#9723])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#9723]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#9833])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#3840]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#3840]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#3840]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#3840]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#3840]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3955])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3469])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#3469])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3469])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#1839])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#1839])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#1839])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#1839])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#1839])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#658])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@kms_feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#658])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-5/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#658])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#658])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-busy-flip:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3637]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-1/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3637]) +9 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#9934]) +8 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#9934]) +9 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#9934]) +8 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#3637]) +7 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-snb: NOTRUN -> [FAIL][163] ([i915#11989]) +1 other test fail
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-rkl: NOTRUN -> [FAIL][164] ([i915#11989]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8810] / [i915#8813])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8810])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#2587] / [i915#2672] / [i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/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-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8708]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +20 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][179] +29 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#8708]) +8 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#1825]) +27 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#8708]) +10 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3023]) +14 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#10433] / [i915#3458])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9766])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#9766])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#9766])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9766])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#5354]) +25 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +6 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#3458]) +7 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][192] +53 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#10656])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#10656])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#12388])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#12388])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#12388])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#12388])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#10656]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#12394])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#12394])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#12394])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#10656])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12339])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#12339])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#12339])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#12339])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#12339])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#6301])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-7/igt@kms_panel_fitting@legacy.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#6301])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#6301])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-1/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#6301])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][217] +14 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu: NOTRUN -> [FAIL][219] ([i915#8292]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#6953])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#6953] / [i915#9423])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#6953])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#12247] / [i915#9423]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#12247]) +9 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#12247]) +8 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#12247]) +18 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#12247]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#12247]) +14 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#12247] / [i915#6953])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#5354]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#5354]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9812]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9685])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9685])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#9685])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#9685])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9292])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#9519])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#9519])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#9519])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#9519])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#9519])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [PASS][243] -> [INCOMPLETE][244] ([i915#10553])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15798/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][245] ([i915#11520]) +6 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#11520]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#12316]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9808]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#11520]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#11520]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#11520]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
- shard-glk: NOTRUN -> [SKIP][252] ([i915#11520]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#9683]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9683]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9683]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4348]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9683])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#9688]) +24 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr-basic:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#9732])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-1/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#1072] / [i915#9732]) +16 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-8/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +22 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#1072] / [i915#9732]) +18 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#4077] / [i915#9688]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-6/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9732]) +19 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#12755] / [i915#5190])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#5289])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#5289])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#5289])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12755])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][270] ([i915#5465]) +2 other tests fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb5/igt@kms_setmode@basic.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][271] +330 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: NOTRUN -> [FAIL][272] ([i915#9196]) +1 other test fail
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#9906])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-glk: NOTRUN -> [ABORT][274] ([i915#13218]) +22 other tests abort
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-glk3/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start:
- shard-tglu: NOTRUN -> [ABORT][275] ([i915#13218]) +25 other tests abort
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-2/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][276] ([i915#4349])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vcs0:
- shard-rkl: NOTRUN -> [DMESG-WARN][277] ([i915#12964]) +2 other tests dmesg-warn
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-5/igt@perf_pmu@busy-double-start@vcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][278] ([i915#4349]) +3 other tests fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-start:
- shard-rkl: NOTRUN -> [ABORT][279] ([i915#13218]) +27 other tests abort
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-5/igt@perf_pmu@busy-start.html
* igt@perf_pmu@event-wait:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8807])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@perf_pmu@event-wait.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8807])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@init-wait@rcs0:
- shard-mtlp: NOTRUN -> [ABORT][282] ([i915#13218]) +33 other tests abort
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-4/igt@perf_pmu@init-wait@rcs0.html
* igt@perf_pmu@multi-client@rcs0:
- shard-snb: NOTRUN -> [ABORT][283] ([i915#13218]) +15 other tests abort
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-snb5/igt@perf_pmu@multi-client@rcs0.html
- shard-dg1: NOTRUN -> [ABORT][284] ([i915#13218]) +23 other tests abort
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-18/igt@perf_pmu@multi-client@rcs0.html
* igt@perf_pmu@semaphore-wait-idle@rcs0:
- shard-dg2: NOTRUN -> [ABORT][285] ([i915#13218]) +22 other tests abort
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-7/igt@perf_pmu@semaphore-wait-idle@rcs0.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#3291] / [i915#3708])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-4/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#3291] / [i915#3708])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-7/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#3708])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-17/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#10216] / [i915#3708])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-2/igt@prime_vgem@basic-write.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#9917])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#9917])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][292] ([i915#12910]) +9 other tests fail
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-tglu-3/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
- shard-mtlp: NOTRUN -> [FAIL][293] ([i915#12910]) +9 other tests fail
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-4/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][294] +17 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#4818])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#4818])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-7/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#4818])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_isolation@nonpriv-switch:
- shard-rkl: [DMESG-WARN][298] ([i915#12964]) -> [PASS][299] +3 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15798/shard-rkl-4/igt@gem_ctx_isolation@nonpriv-switch.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-rkl-3/igt@gem_ctx_isolation@nonpriv-switch.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg1: [DMESG-WARN][300] ([i915#4423]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15798/shard-dg1-14/igt@kms_pm_rpm@system-suspend-modeset.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-dg1-13/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-mtlp: [FAIL][302] ([i915#12857]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15798/shard-mtlp-5/igt@kms_psr@psr2-primary-page-flip.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_psr@psr2-primary-page-flip@edp-1:
- shard-mtlp: [FAIL][304] ([i915#10105]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15798/shard-mtlp-5/igt@kms_psr@psr2-primary-page-flip@edp-1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/shard-mtlp-3/igt@kms_psr@psr2-primary-page-flip@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#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10105]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10105
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12857]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12857
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8139 -> IGTPW_12257
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15798: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12257: 8300741ee6be9aa2661f5585f1f6b2c2d9450d4a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12257/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread* ✗ Xe.CI.Full: failure for Update skip messages in scaling modes (rev2)
2024-12-05 12:25 [PATCH i-g-t v1 0/2] Update skip messages in scaling modes Naladala Ramanaidu
` (4 preceding siblings ...)
2024-12-06 4:08 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06 5:58 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-06 5:58 UTC (permalink / raw)
To: Naladala, Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 79753 bytes --]
== Series Details ==
Series: Update skip messages in scaling modes (rev2)
URL : https://patchwork.freedesktop.org/series/141850/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12257_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12257_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12257_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_12257_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [ABORT][1] +3 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1.html
* igt@xe_ccs@block-copy-uncompressed-inc-dimension@xmajor-uncompressed-compfmt0-vram01-vram01-346x346:
- shard-bmg: [PASS][2] -> [DMESG-WARN][3] +42 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_ccs@block-copy-uncompressed-inc-dimension@xmajor-uncompressed-compfmt0-vram01-vram01-346x346.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_ccs@block-copy-uncompressed-inc-dimension@xmajor-uncompressed-compfmt0-vram01-vram01-346x346.html
* igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate:
- shard-bmg: NOTRUN -> [DMESG-WARN][4] +4 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][5] ([Intel XE#3468]) -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3.html
Known issues
------------
Here are the changes found in XEIGTPW_12257_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1125])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3157])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#3468]) +69 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][13] ([Intel XE#911]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#873])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#664])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#1701]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3658])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [FAIL][21] ([Intel XE#1874])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +18 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +19 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1467]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2328])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2191]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1512])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2669]) +7 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3433]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +17 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +21 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2724])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2325])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#306]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252]) +14 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +13 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2390]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3278])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_content_protection@lic-type-1.html
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2341])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2:
- shard-bmg: [PASS][50] -> [DMESG-FAIL][51] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2291]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-bmg: NOTRUN -> [DMESG-WARN][56] ([Intel XE#877])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2286])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1340])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#776])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#702])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#703])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2374])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2316]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +6 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][67] ([Intel XE#3468]) +18 other tests dmesg-fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][68] ([Intel XE#1727] / [Intel XE#3468]) +9 other tests dmesg-fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#886]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2380]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/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-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401]) +7 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/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@pipe-a-valid-mode:
- shard-bmg: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#352])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2333]) +12 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: NOTRUN -> [INCOMPLETE][84] ([Intel XE#3468])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2312]) +22 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +28 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +12 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +37 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#656]) +68 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2502])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2340])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#3544])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1503])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
- shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#1503]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2934])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#346])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#346])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2486])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-bmg: NOTRUN -> [DMESG-WARN][100] ([Intel XE#3468]) +67 other tests dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: NOTRUN -> [DMESG-WARN][101] ([Intel XE#2705] / [Intel XE#3468])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2493]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2493])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +24 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- shard-bmg: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#2705] / [Intel XE#3468])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +27 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#870])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1131])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2392])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: NOTRUN -> [DMESG-WARN][111] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1439] / [Intel XE#3141])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_properties@crtc-properties-atomic:
- shard-bmg: [PASS][114] -> [DMESG-WARN][115] ([Intel XE#2705])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_properties@crtc-properties-atomic.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1489]) +16 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1128]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2387])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-rotation-180:
- shard-lnl: [PASS][122] -> [DMESG-WARN][123] ([Intel XE#2055])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-180.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2330]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1127])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#3414]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#3414]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1435])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#1435])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#362])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2426])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#1727] / [Intel XE#3468]) +11 other tests dmesg-warn
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@kms_vblank@wait-forked@pipe-a-dp-2:
- shard-bmg: [PASS][135] -> [DMESG-FAIL][136] ([Intel XE#3468]) +14 other tests dmesg-fail
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1499])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#756])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1091] / [Intel XE#2849])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1091] / [Intel XE#2849])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1062])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2504])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@read-metadata:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +17 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#688]) +15 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [INCOMPLETE][146] ([Intel XE#1473])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2322]) +12 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1392]) +16 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: NOTRUN -> [DMESG-WARN][149] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][150] ([Intel XE#3343])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#3467] / [Intel XE#3468])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2229]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- shard-bmg: NOTRUN -> [INCOMPLETE][154] ([Intel XE#2998]) +1 other test incomplete
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2229])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#586])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1416])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_mmap@vram.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182]) -> ([PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [SKIP][207], [PASS][208]) ([Intel XE#378])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_module_load@load.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2248]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_oa@unprivileged-single-ctx-counters.html
- shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#2248])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#977])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#2245])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#2284]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][214] ([Intel XE#1358] / [Intel XE#1616])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-8/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#584])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-5/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-lnl: NOTRUN -> [ABORT][217] ([Intel XE#3673]) +7 other tests abort
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
- shard-bmg: NOTRUN -> [ABORT][218] ([Intel XE#3673]) +1 other test abort
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_query@multigpu-query-config:
- shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#944]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#944]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [PASS][221] -> [DMESG-WARN][222] ([Intel XE#2919])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_wedged@basic-wedged.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [ABORT][223] ([Intel XE#3421])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][224] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2:
- shard-bmg: [DMESG-WARN][226] ([Intel XE#3468]) -> [PASS][227] +29 other tests pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][228] ([Intel XE#2291]) -> [PASS][229] +2 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [DMESG-FAIL][230] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][232] ([Intel XE#2316]) -> [PASS][233] +7 other tests pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][234] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][236] ([Intel XE#1503]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@static-swap.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_hdr@static-swap.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][238] ([Intel XE#3012]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][240] ([Intel XE#2571]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][242] ([Intel XE#718]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][244] ([Intel XE#2883]) -> [PASS][245] +2 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [DMESG-FAIL][246] ([Intel XE#3468]) -> [PASS][247] +7 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-bmg: [FAIL][248] -> [PASS][249] +1 other test pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
- shard-bmg: [DMESG-WARN][250] -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
* igt@xe_exec_threads@threads-bal-shared-vm-userptr:
- shard-bmg: [DMESG-WARN][252] ([Intel XE#2705]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_threads@threads-bal-shared-vm-userptr.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@xe_exec_threads@threads-bal-shared-vm-userptr.html
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
- shard-bmg: [DMESG-WARN][254] ([Intel XE#1727]) -> [PASS][255] +2 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][256] ([Intel XE#3343]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [DMESG-WARN][258] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/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-bmg: [DMESG-WARN][260] ([Intel XE#3467]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][262] ([Intel XE#1192]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@many-reload:
- shard-bmg: [FAIL][264] ([Intel XE#3625]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_module_load@many-reload.html
* igt@xe_pm@d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][266] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][267] +4 other tests pass
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][268] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [DMESG-FAIL][270] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][272] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][274] ([Intel XE#1178]) -> [SKIP][275] ([Intel XE#2341]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_content_protection@atomic.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][276] ([Intel XE#1188]) -> [SKIP][277] ([Intel XE#2341])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_content_protection@uevent.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-bmg: [INCOMPLETE][278] -> [DMESG-WARN][279] ([Intel XE#3468])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- shard-bmg: [FAIL][280] ([Intel XE#2141]) -> [DMESG-FAIL][281] ([Intel XE#3468]) +1 other test dmesg-fail
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][282] ([Intel XE#1695]) -> [DMESG-FAIL][283] ([Intel XE#3468])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][284] ([Intel XE#2882]) -> [SKIP][285] ([Intel XE#2316])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [DMESG-WARN][286] ([Intel XE#3468]) -> [FAIL][287] ([Intel XE#2882]) +5 other tests fail
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [FAIL][288] ([Intel XE#2882]) -> [DMESG-WARN][289] ([Intel XE#3468]) +2 other tests dmesg-warn
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][290] ([Intel XE#2311]) -> [SKIP][291] ([Intel XE#2312]) +6 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: [FAIL][292] ([Intel XE#2333]) -> [DMESG-FAIL][293] ([Intel XE#3468]) +2 other tests dmesg-fail
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][294] ([Intel XE#3468]) -> [FAIL][295] ([Intel XE#2333]) +4 other tests fail
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][296] ([Intel XE#2333]) -> [SKIP][297] ([Intel XE#2312]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][298] ([Intel XE#2312]) -> [DMESG-FAIL][299] ([Intel XE#3468])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][300] ([Intel XE#2312]) -> [FAIL][301] ([Intel XE#2333]) +1 other test fail
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][302] ([Intel XE#2312]) -> [SKIP][303] ([Intel XE#2311]) +14 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][304] ([Intel XE#2313]) -> [SKIP][305] ([Intel XE#2312]) +10 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][306] ([Intel XE#2312]) -> [SKIP][307] ([Intel XE#2313]) +9 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][308] ([Intel XE#1729]) -> [SKIP][309] ([Intel XE#2426])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [TIMEOUT][310] ([Intel XE#1473]) -> [INCOMPLETE][311] ([Intel XE#1473])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][312] ([Intel XE#1473]) -> [FAIL][313] ([Intel XE#1000])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [DMESG-FAIL][314] -> [FAIL][315] ([Intel XE#1000])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict@evict-mixed-threads-large.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-4/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][316] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][317] ([Intel XE#3467]) +1 other test dmesg-warn
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [ABORT][318] ([Intel XE#1616]) -> [ABORT][319] ([Intel XE#1616] / [Intel XE#3468])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][320] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][321] ([Intel XE#1616])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#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#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[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#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8139 -> IGTPW_12257
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
IGTPW_12257: 8300741ee6be9aa2661f5585f1f6b2c2d9450d4a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12257/index.html
[-- Attachment #2: Type: text/html, Size: 93721 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread