* [PATCH v4 1/3] tests/kms_lease: Cache xe_device info for lease fd
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
@ 2024-01-17 14:13 ` Mohammed Thasleem
2024-01-17 14:13 ` [PATCH v4 2/3] lib/igt_kms: Correct the check for igt_require Mohammed Thasleem
` (8 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Mohammed Thasleem @ 2024-01-17 14:13 UTC (permalink / raw)
To: igt-dev
In case of xe device for lessor fd, the xe_device struct gets
created and cached during drm_open. But for the lessee fd,
the xe_device info struct is not created and cached.
This causes problem in prepare_crtc() for lessee with xe, which
needs the xe_device info struct. So, create and cache the xe_device
struct info for lease fd, when we make lease and remove it from
cache while terminating the lease.
v2: -Update description and move logic to make_lease call. (Ankit)
-Add xe_device_put, while terminating the lease. (Ankit)
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_lease.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tests/kms_lease.c b/tests/kms_lease.c
index 8ac58af38..f7531c803 100644
--- a/tests/kms_lease.c
+++ b/tests/kms_lease.c
@@ -48,6 +48,8 @@
#include <drm.h>
#include "igt_device.h"
+#include "xe_drm.h"
+#include "xe/xe_query.h"
/**
* SUBTEST: atomic-implicit-crtc
@@ -267,12 +269,20 @@ static int make_lease(data_t *data)
if (ret)
return ret;
+ /* Cache xe_device struct */
+ if (is_xe_device(data->lease.fd))
+ xe_device_get(data->lease.fd);
+
data->lease.lessee_id = mcl.lessee_id;
return 0;
}
static void terminate_lease(int lease_fd)
{
+ /* Remove xe_device from cache. */
+ if (is_xe_device(lease_fd))
+ xe_device_put(lease_fd);
+
close(lease_fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v4 2/3] lib/igt_kms: Correct the check for igt_require
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
2024-01-17 14:13 ` [PATCH v4 1/3] tests/kms_lease: " Mohammed Thasleem
@ 2024-01-17 14:13 ` Mohammed Thasleem
2024-01-17 14:53 ` [PATCH v5 " Mohammed Thasleem
2024-01-17 14:13 ` [PATCH v4 3/3] HAX/DO_NOT_MERGE: Patch adding to test to kms_lease Mohammed Thasleem
` (7 subsequent siblings)
9 siblings, 1 reply; 14+ messages in thread
From: Mohammed Thasleem @ 2024-01-17 14:13 UTC (permalink / raw)
To: igt-dev
The function 'igt_debugfs_dir()' returns -1, if it fails and a non-negative
fd otherwise. However in the function igt_get_max_dotclock() the condition
to check the debugfs directory uses igt_require (dir), which fails even if
the dir is 0.
So correct the igt_require check for a valid igt_debugfs fd.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_kms.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e4dea1a60..21338d026 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6100,7 +6100,7 @@ int igt_get_max_dotclock(int fd)
drmModeFreeResources(resources);
dir = igt_debugfs_dir(fd);
- igt_require(dir);
+ igt_require(dir != 0);
/*
* Display specific clock frequency info is moved to i915_cdclk_info,
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v5 2/3] lib/igt_kms: Correct the check for igt_require
2024-01-17 14:13 ` [PATCH v4 2/3] lib/igt_kms: Correct the check for igt_require Mohammed Thasleem
@ 2024-01-17 14:53 ` Mohammed Thasleem
2024-01-18 6:15 ` Nautiyal, Ankit K
0 siblings, 1 reply; 14+ messages in thread
From: Mohammed Thasleem @ 2024-01-17 14:53 UTC (permalink / raw)
To: igt-dev
The function 'igt_debugfs_dir()' returns -1, if it fails and a non-negative
fd otherwise. However in the function igt_get_max_dotclock() the condition
to check the debugfs directory uses igt_require (dir), which fails even if
the dir is 0.
So correct the igt_require check for a valid igt_debugfs fd.
v2: Correct the logic in igt_require.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_kms.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e4dea1a60..1b4d0d761 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6100,7 +6100,7 @@ int igt_get_max_dotclock(int fd)
drmModeFreeResources(resources);
dir = igt_debugfs_dir(fd);
- igt_require(dir);
+ igt_require(dir != -1);
/*
* Display specific clock frequency info is moved to i915_cdclk_info,
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v5 2/3] lib/igt_kms: Correct the check for igt_require
2024-01-17 14:53 ` [PATCH v5 " Mohammed Thasleem
@ 2024-01-18 6:15 ` Nautiyal, Ankit K
2024-01-18 6:15 ` Nautiyal, Ankit K
0 siblings, 1 reply; 14+ messages in thread
From: Nautiyal, Ankit K @ 2024-01-18 6:15 UTC (permalink / raw)
To: igt-dev
On 1/17/2024 8:23 PM, Mohammed Thasleem wrote:
> The function 'igt_debugfs_dir()' returns -1, if it fails and a non-negative
> fd otherwise. However in the function igt_get_max_dotclock() the condition
> to check the debugfs directory uses igt_require (dir), which fails even if
> the dir is 0.
> So correct the igt_require check for a valid igt_debugfs fd.
>
> v2: Correct the logic in igt_require.
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> lib/igt_kms.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e4dea1a60..1b4d0d761 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6100,7 +6100,7 @@ int igt_get_max_dotclock(int fd)
> drmModeFreeResources(resources);
>
> dir = igt_debugfs_dir(fd);
> - igt_require(dir);
> + igt_require(dir != -1);
Open() does return -1 in case of failure, with errorno set, so looks
good to me.
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>
> /*
> * Display specific clock frequency info is moved to i915_cdclk_info,
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v5 2/3] lib/igt_kms: Correct the check for igt_require
2024-01-18 6:15 ` Nautiyal, Ankit K
@ 2024-01-18 6:15 ` Nautiyal, Ankit K
0 siblings, 0 replies; 14+ messages in thread
From: Nautiyal, Ankit K @ 2024-01-18 6:15 UTC (permalink / raw)
To: igt-dev
On 1/17/2024 8:23 PM, Mohammed Thasleem wrote:
> The function 'igt_debugfs_dir()' returns -1, if it fails and a non-negative
> fd otherwise. However in the function igt_get_max_dotclock() the condition
> to check the debugfs directory uses igt_require (dir), which fails even if
> the dir is 0.
> So correct the igt_require check for a valid igt_debugfs fd.
>
> v2: Correct the logic in igt_require.
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> lib/igt_kms.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e4dea1a60..1b4d0d761 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6100,7 +6100,7 @@ int igt_get_max_dotclock(int fd)
> drmModeFreeResources(resources);
>
> dir = igt_debugfs_dir(fd);
> - igt_require(dir);
> + igt_require(dir != -1);
Open() does return -1 in case of failure, with errorno set, so looks
good to me.
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>
> /*
> * Display specific clock frequency info is moved to i915_cdclk_info,
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v4 3/3] HAX/DO_NOT_MERGE: Patch adding to test to kms_lease
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
2024-01-17 14:13 ` [PATCH v4 1/3] tests/kms_lease: " Mohammed Thasleem
2024-01-17 14:13 ` [PATCH v4 2/3] lib/igt_kms: Correct the check for igt_require Mohammed Thasleem
@ 2024-01-17 14:13 ` Mohammed Thasleem
2024-01-17 15:25 ` ✓ Fi.CI.BAT: success for Cache xe_device info for lease fd (rev4) Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Mohammed Thasleem @ 2024-01-17 14:13 UTC (permalink / raw)
To: igt-dev
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 283 ++---------------------
1 file changed, 21 insertions(+), 262 deletions(-)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index bef5b0b8a..ab1cb135f 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,265 +1,24 @@
# Should be the first test
igt@xe_module_load@load
-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
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-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@xe_evict_ccs@evict-overcommit-simple
-igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd
-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_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_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_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_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@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
-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
-
-# 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@bo
-igt@xe_live_ktest@dmabuf
-igt@xe_live_ktest@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@kms_lease@simple-lease
+igt@kms_lease@empty-lease
+igt@kms_lease@lessee-list
+igt@kms_lease@lease-get
+igt@kms_lease@lease-unleased-connector
+igt@kms_lease@lease-unleased-crtc
+igt@kms_lease@lease-revoke
+igt@kms_lease@lease-again
+igt@kms_lease@lease-invalid-connector
+igt@kms_lease@lease-invalid-crtc
+igt@kms_lease@lease-invalid-plane
+igt@kms_lease@page-flip-implicit-plane
+igt@kms_lease@setcrtc-implicit-plane
+igt@kms_lease@cursor-implicit-plane
+igt@kms_lease@atomic-implicit-crtc
+igt@kms_lease@invalid-create-leases
+igt@kms_lease@possible-crtcs-filtering
+igt@kms_lease@master-vs-lease
+igt@kms_lease@multimaster-lease
+igt@kms_lease@implicit-plane-lease
+igt@kms_lease@lease-uevent
--
2.25.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* ✓ Fi.CI.BAT: success for Cache xe_device info for lease fd (rev4)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (2 preceding siblings ...)
2024-01-17 14:13 ` [PATCH v4 3/3] HAX/DO_NOT_MERGE: Patch adding to test to kms_lease Mohammed Thasleem
@ 2024-01-17 15:25 ` Patchwork
2024-01-17 15:48 ` ✗ CI.xeBAT: failure " Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-17 15:25 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7607 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev4)
URL : https://patchwork.freedesktop.org/series/128101/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14132 -> IGTPW_10544
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/index.html
Participating hosts (38 -> 34)
------------------------------
Additional (1): bat-mtlp-8
Missing (5): fi-bsw-n3050 bat-dg2-8 bat-dg2-9 fi-snb-2520m bat-jsl-1
Known issues
------------
Here are the changes found in IGTPW_10544 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#6645])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4212]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840] / [i915#9159])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([fdo#109285])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#5274])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-adlp-9: NOTRUN -> [SKIP][14] ([i915#9826]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#8809])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3708] / [i915#4077]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#3708]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- {bat-rpls-3}: [DMESG-WARN][18] ([i915#5591]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-2: [ABORT][20] ([i915#7978]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9500]: https://gitlab.freedesktop.org/drm/intel/issues/9500
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9826]: https://gitlab.freedesktop.org/drm/intel/issues/9826
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7677 -> IGTPW_10544
CI-20190529: 20190529
CI_DRM_14132: b42f47ca5fff1d04fb8eb02d64520b3f338a495d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10544: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@xe_exec_atomic@basic-dec-all
-igt@xe_exec_atomic@basic-inc-all
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/index.html
[-- Attachment #2: Type: text/html, Size: 8763 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ CI.xeBAT: failure for Cache xe_device info for lease fd (rev4)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (3 preceding siblings ...)
2024-01-17 15:25 ` ✓ Fi.CI.BAT: success for Cache xe_device info for lease fd (rev4) Patchwork
@ 2024-01-17 15:48 ` Patchwork
2024-01-17 16:01 ` ✓ Fi.CI.BAT: success for Cache xe_device info for lease fd (rev5) Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-17 15:48 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2685 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev4)
URL : https://patchwork.freedesktop.org/series/128101/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7677_BAT -> XEIGTPW_10544_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10544_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10544_BAT, 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_10544_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_lease@lease-invalid-plane:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10544/bat-dg2-oem2/igt@kms_lease@lease-invalid-plane.html
- bat-adlp-7: NOTRUN -> [SKIP][2] +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10544/bat-adlp-7/igt@kms_lease@lease-invalid-plane.html
Known issues
------------
Here are the changes found in XEIGTPW_10544_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_lease@lease-get:
- bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#1024]) +20 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10544/bat-atsm-2/igt@kms_lease@lease-get.html
* igt@kms_lease@lease-unleased-crtc:
- bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +20 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10544/bat-pvc-2/igt@kms_lease@lease-unleased-crtc.html
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
Build changes
-------------
* IGT: IGT_7677 -> IGTPW_10544
* Linux: xe-638-802f9a6662f7ad62bf92457f62a5d42c7249bb5c -> xe-639-b42f47ca5fff1d04fb8eb02d64520b3f338a495d
IGTPW_10544: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-638-802f9a6662f7ad62bf92457f62a5d42c7249bb5c: 802f9a6662f7ad62bf92457f62a5d42c7249bb5c
xe-639-b42f47ca5fff1d04fb8eb02d64520b3f338a495d: b42f47ca5fff1d04fb8eb02d64520b3f338a495d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10544/index.html
[-- Attachment #2: Type: text/html, Size: 3416 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Fi.CI.BAT: success for Cache xe_device info for lease fd (rev5)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (4 preceding siblings ...)
2024-01-17 15:48 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-01-17 16:01 ` Patchwork
2024-01-17 16:02 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-17 16:01 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1611 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev5)
URL : https://patchwork.freedesktop.org/series/128101/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14132 -> IGTPW_10545
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
Participating hosts (38 -> 33)
------------------------------
Missing (5): fi-bsw-n3050 bat-dg2-8 bat-dg2-9 fi-snb-2520m bat-jsl-1
Known issues
------------
Here are the changes found in IGTPW_10545 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-2: [ABORT][1] ([i915#7978]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7677 -> IGTPW_10545
CI-20190529: 20190529
CI_DRM_14132: b42f47ca5fff1d04fb8eb02d64520b3f338a495d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
[-- Attachment #2: Type: text/html, Size: 2198 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ CI.xeBAT: success for Cache xe_device info for lease fd (rev5)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (5 preceding siblings ...)
2024-01-17 16:01 ` ✓ Fi.CI.BAT: success for Cache xe_device info for lease fd (rev5) Patchwork
@ 2024-01-17 16:02 ` Patchwork
2024-01-17 18:38 ` ✗ Fi.CI.IGT: failure for Cache xe_device info for lease fd (rev4) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-17 16:02 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1763 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev5)
URL : https://patchwork.freedesktop.org/series/128101/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7677_BAT -> XEIGTPW_10545_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10545_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_lease@lease-get:
- bat-atsm-2: NOTRUN -> [SKIP][1] ([Intel XE#1024]) +20 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10545/bat-atsm-2/igt@kms_lease@lease-get.html
* igt@kms_lease@lease-unleased-crtc:
- bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#1024]) +20 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10545/bat-pvc-2/igt@kms_lease@lease-unleased-crtc.html
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
Build changes
-------------
* IGT: IGT_7677 -> IGTPW_10545
* Linux: xe-638-802f9a6662f7ad62bf92457f62a5d42c7249bb5c -> xe-639-b42f47ca5fff1d04fb8eb02d64520b3f338a495d
IGTPW_10545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-638-802f9a6662f7ad62bf92457f62a5d42c7249bb5c: 802f9a6662f7ad62bf92457f62a5d42c7249bb5c
xe-639-b42f47ca5fff1d04fb8eb02d64520b3f338a495d: b42f47ca5fff1d04fb8eb02d64520b3f338a495d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10545/index.html
[-- Attachment #2: Type: text/html, Size: 2447 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Fi.CI.IGT: failure for Cache xe_device info for lease fd (rev4)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (6 preceding siblings ...)
2024-01-17 16:02 ` ✓ CI.xeBAT: " Patchwork
@ 2024-01-17 18:38 ` Patchwork
2024-01-17 19:41 ` ✗ Fi.CI.IGT: failure for Cache xe_device info for lease fd (rev5) Patchwork
2024-01-18 7:14 ` ✓ Fi.CI.IGT: success " Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-17 18:38 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83363 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev4)
URL : https://patchwork.freedesktop.org/series/128101/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14132_full -> IGTPW_10544_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10544_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10544_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_10544/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10544_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk1/igt@runner@aborted.html
Known issues
------------
Here are the changes found in IGTPW_10544_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][5] ([i915#6122])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@api_intel_bb@render-ccs.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#7701]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@vcs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@drm_fdinfo@isolation@vcs1.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#7297])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][12] ([fdo#109314])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][15] -> [FAIL][16] ([i915#5784])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-13/igt@gem_eio@kms.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][17] -> [FAIL][18] ([i915#5784])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-6/igt@gem_eio@reset-stress.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][20] ([i915#9606]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-tglu: NOTRUN -> [FAIL][21] ([i915#9606])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][22] ([i915#9606])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-rkl: NOTRUN -> [FAIL][26] ([i915#2842])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-tglu: NOTRUN -> [FAIL][27] ([i915#2842])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-15/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#7697])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#7697]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-3/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-2/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-rkl: NOTRUN -> [SKIP][33] ([fdo#109283])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +7 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613] / [i915#7582])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4565])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#4613]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-16/igt@gem_mmap_gtt@coherency.html
- shard-rkl: NOTRUN -> [SKIP][50] ([fdo#111656])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +9 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [INCOMPLETE][54] ([i915#10042])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-3/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-19/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4079]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#8411])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4958])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4958])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_tiledx_blits:
- shard-rkl: NOTRUN -> [SKIP][69] ([fdo#109289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][70] ([fdo#109289]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][76] -> [INCOMPLETE][77] ([i915#9200])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [PASS][78] -> [INCOMPLETE][79] ([i915#9200] / [i915#9849])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [INCOMPLETE][80] ([i915#9849])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][81] -> [INCOMPLETE][82] ([i915#9407])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#6590])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-5/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][84] -> [FAIL][85] ([i915#3591])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#6621])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#6621])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4387])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4387])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#7984])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#5723])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][92] ([i915#9311])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3826])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3826])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#8709]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#8709]) +11 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][97] ([i915#8247]) +3 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#6228])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5286]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#5286]) +8 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][105] ([fdo#111614]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][106] ([fdo#111614]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][107] ([fdo#111614] / [i915#3638]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][108] -> [FAIL][109] ([i915#3743])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-19/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111615]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +8 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][115] ([fdo#111615])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][116] ([fdo#110723]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111615]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#2705])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@kms_big_joiner@invalid-modeset.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#2705])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5354] / [i915#6095]) +15 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +20 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#5354]) +71 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +25 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-7/igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354]) +35 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][126] ([fdo#109271]) +169 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#7213]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3742])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-rkl: NOTRUN -> [SKIP][129] ([fdo#111827])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg1: NOTRUN -> [SKIP][130] ([fdo#111827])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][131] ([fdo#111827]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#7828]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-4/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7828]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +10 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-3/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-15/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3116])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#7118])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@kms_content_protection@lic.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#7118]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3359])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#3359]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3359])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +8 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3555]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3359]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#5354]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9067])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#9723]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3804])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#8812]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#1839])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#1839]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#1839])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#9337])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#658])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-15/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#658])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3637]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-7/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825]) +13 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][170] ([fdo#111825] / [i915#9934]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-16/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8381]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#2672]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][175] -> [FAIL][176] ([i915#6880])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109280]) +8 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111825]) +17 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-snb: [PASS][179] -> [SKIP][180] ([fdo#109271]) +8 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#1825]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#5439]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3458]) +17 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#8708]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +25 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111825] / [i915#1825]) +39 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#10070])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#10070])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#10070])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-16/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][190] ([fdo#110189]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8708]) +17 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][192] ([fdo#109271]) +71 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3458]) +9 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8708])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#6301])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#6301])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#6301])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][201] ([i915#7862]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#5176]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#9423]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9423]) +19 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#9423]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#5235] / [i915#9423]) +15 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#5235]) +7 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#5235]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#9685]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#9685]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#9685])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-19/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9292])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3361])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-17/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][214] -> [FAIL][215] ([i915#9295])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#9685])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][217] -> [SKIP][218] ([i915#9519]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#9519]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#9519])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: NOTRUN -> [SKIP][221] ([fdo#109293] / [fdo#109506])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#6524])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9683])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9683])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#9683]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][226] ([fdo#111068] / [i915#9683]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][227] ([fdo#111068] / [i915#9683])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-14/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9683]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5289])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#4235])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][231] ([fdo#111615] / [i915#5289]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#4235] / [i915#5190])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][233] ([fdo#111615] / [i915#5289]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3555]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][235] ([fdo#109271] / [i915#2437]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-glk3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#2437] / [i915#9412])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#2437] / [i915#9412])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-15/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#2437])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-9/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#2437])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#2437])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#8850])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-rkl: NOTRUN -> [SKIP][242] ([fdo#112283])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@perf_pmu@event-wait@rcs0.html
- shard-dg1: NOTRUN -> [SKIP][243] ([fdo#112283])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-19/igt@perf_pmu@event-wait@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8807])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][245] ([i915#6806])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [PASS][246] -> [FAIL][247] ([i915#4349])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@perf_pmu@most-busy-check-all@rcs0.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#8516])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8516])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#8516])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][251] ([fdo#109295] / [i915#3291] / [i915#3708])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3291] / [i915#3708])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#9917]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9917])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#9917]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#9917])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#9917])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#4818])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#2575]) +8 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-7/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@v3d/v3d_submit_cl@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109315]) +15 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-5/igt@v3d/v3d_submit_cl@bad-pad.html
- shard-tglu: NOTRUN -> [SKIP][261] ([fdo#109315] / [i915#2575]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-9/igt@v3d/v3d_submit_cl@bad-pad.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#2575]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-17/igt@v3d/v3d_wait_bo@used-bo-1ns.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2575]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-5/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#7711]) +7 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#2575]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-2/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#7711]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-8/igt@vc4/vc4_tiling@set-bad-flags.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#7711]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-13/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#7711]) +6 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][269] ([i915#7297]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][271] ([i915#9364]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][273] ([i915#2842]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-tglu: [FAIL][275] ([i915#2842]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][277] ([i915#1982] / [i915#9820] / [i915#9849]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][279] ([i915#7790]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb2/igt@i915_pm_rps@reset.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb2/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][281] ([i915#7984]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-8/igt@i915_power@sanity.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-6/igt@i915_power@sanity.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][283] ([i915#5138]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][285] ([i915#3743]) -> [PASS][286] +1 other test pass
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: [SKIP][287] ([fdo#109271] / [fdo#111767]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-snb: [SKIP][289] ([fdo#109271]) -> [PASS][290] +9 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [FAIL][291] ([i915#6880]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][293] ([i915#9519]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [ABORT][295] ([i915#8875]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-90.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-rkl: [INCOMPLETE][297] ([i915#8875] / [i915#9569]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][299] ([i915#9196]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
- shard-tglu: [FAIL][301] ([i915#9196]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg1: [FAIL][303] ([i915#4349]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vcs0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][305] ([i915#9408] / [i915#9618]) -> [INCOMPLETE][306] ([i915#9618])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
* igt@kms_content_protection@srm:
- shard-snb: [INCOMPLETE][307] ([i915#8816]) -> [SKIP][308] ([fdo#109271]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb7/igt@kms_content_protection@srm.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-snb5/igt@kms_content_protection@srm.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][309] ([i915#4816]) -> [SKIP][310] ([i915#4070] / [i915#4816])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][311] ([i915#9295]) -> [SKIP][312] ([i915#3361])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][313] ([i915#9351]) -> [INCOMPLETE][314] ([i915#5493])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7677 -> IGTPW_10544
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14132: b42f47ca5fff1d04fb8eb02d64520b3f338a495d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10544: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10544/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ 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_10544/index.html
[-- Attachment #2: Type: text/html, Size: 101351 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Fi.CI.IGT: failure for Cache xe_device info for lease fd (rev5)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (7 preceding siblings ...)
2024-01-17 18:38 ` ✗ Fi.CI.IGT: failure for Cache xe_device info for lease fd (rev4) Patchwork
@ 2024-01-17 19:41 ` Patchwork
2024-01-18 7:14 ` ✓ Fi.CI.IGT: success " Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-17 19:41 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82864 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev5)
URL : https://patchwork.freedesktop.org/series/128101/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14132_full -> IGTPW_10545_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10545_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10545_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_10545/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10545_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_gtt@hang:
- shard-snb: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb5/igt@gem_mmap_gtt@hang.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb6/igt@gem_mmap_gtt@hang.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-10/igt@kms_pm_rpm@system-suspend-modeset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_pm_rpm@system-suspend-modeset.html
Known issues
------------
Here are the changes found in IGTPW_10545_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][5] ([i915#6122])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@api_intel_bb@render-ccs.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#7701]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@vcs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +11 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@drm_fdinfo@isolation@vcs1.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#6335])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][10] ([fdo#109314])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#280])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][13] ([i915#10030] / [i915#7975] / [i915#8213] / [i915#8398])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][14] -> [FAIL][15] ([i915#5784])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-10/igt@gem_eio@kms.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][16] -> [FAIL][17] ([i915#5784]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-12/igt@gem_eio@reset-stress.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][18] ([i915#5784])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#4812])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][21] ([i915#9606])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][22] ([i915#9606])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][23] -> [FAIL][24] ([i915#2846])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [PASS][25] -> [FAIL][26] ([i915#2842])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][27] ([i915#2842])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2876])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) +2 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#7697])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#7697]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#7697])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-rkl: NOTRUN -> [SKIP][39] ([fdo#109283])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613] / [i915#7582])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#4613]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_mmap_gtt@coherency.html
- shard-rkl: NOTRUN -> [SKIP][56] ([fdo#111656])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +10 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3282]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [INCOMPLETE][61] ([i915#10042])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-3/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +227 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@gem_render_tiled_blits@basic.html
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4958])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4958])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_tiledx_blits:
- shard-rkl: NOTRUN -> [SKIP][75] ([fdo#109289])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][76] ([fdo#109289]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [INCOMPLETE][77] ([i915#5566])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk9/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#2527])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][83] -> [INCOMPLETE][84] ([i915#9849])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb4/igt@i915_module_load@reload-no-display.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb5/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [INCOMPLETE][85] ([i915#9697] / [i915#9849])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][86] -> [INCOMPLETE][87] ([i915#9200])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [WARN][88] ([i915#7356])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#6590])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#6621])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4387])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#4387])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#7984])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#5723])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#5723])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#3826])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3826])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#8709]) +11 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#6228])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +6 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111614]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][108] ([fdo#111614] / [i915#3638]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][109] -> [FAIL][110] ([i915#3743]) +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111615]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#5190]) +9 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111615])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][117] ([fdo#110723]) +7 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#2705])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-12/igt@kms_big_joiner@invalid-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2705])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_big_joiner@invalid-modeset.html
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#2705])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +16 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +23 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5354]) +70 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +22 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5354]) +33 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3742])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111827])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][131] ([fdo#111827]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-12/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#7828]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7828]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +9 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-14/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3116])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#7118]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#7118])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3359])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#3359]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3555]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3359]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274] / [i915#5354]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111825]) +13 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9067])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#9723]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9227])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9723])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-14/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3804])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#8812]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#1839]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#1839])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-4/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#1839])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#658])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3637]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip:
- shard-dg1: NOTRUN -> [SKIP][168] ([fdo#111825] / [i915#9934]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8381]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#2672]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][173] ([fdo#109280]) +9 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][174] ([fdo#111825]) +15 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-snb: [PASS][175] -> [SKIP][176] ([fdo#109271]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1825]) +5 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#5439])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3458]) +18 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#8708]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3023]) +24 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][182] ([fdo#111825] / [i915#1825]) +35 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#10070])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#10070])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#10070])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][186] ([fdo#110189]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8708]) +17 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][188] ([fdo#109271]) +70 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3458]) +9 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8708])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#6301])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#6301])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#6301])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][196] ([i915#7862]) +1 other test fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555]) +6 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5176]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9423]) +11 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9423]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#9423]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#5235]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#5235])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#5235] / [i915#9423]) +19 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#5235]) +11 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5235]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#9685]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#5978])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3361])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][210] -> [FAIL][211] ([i915#9295])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#9685])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#9519])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9519]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#9519])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: NOTRUN -> [SKIP][216] ([fdo#109293] / [fdo#109506])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#6524])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9683])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#9683]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#9683]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9683]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#9683]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-15/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#5289])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#4235])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][225] ([fdo#111615] / [i915#5289])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#4235] / [i915#5190])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][228] -> [FAIL][229] ([i915#9196])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][230] ([fdo#109271] / [i915#2437]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#2437] / [i915#9412])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#2437])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#2437])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#2437])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][235] -> [FAIL][236] ([i915#4349])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#8850])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-rkl: NOTRUN -> [SKIP][238] ([fdo#112283])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@perf_pmu@event-wait@rcs0.html
- shard-dg1: NOTRUN -> [SKIP][239] ([fdo#112283])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-12/igt@perf_pmu@event-wait@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8807])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-4/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][241] ([i915#6806])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#8516])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8516])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#8516])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109295] / [i915#3291] / [i915#3708])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3708] / [i915#4077])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#3291] / [i915#3708])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9917]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#9917])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9917])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][251] ([i915#9781])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][252] ([fdo#109307] / [i915#4818])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_submit_cl@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109315]) +13 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@v3d/v3d_submit_cl@bad-pad.html
- shard-tglu: NOTRUN -> [SKIP][254] ([fdo#109315] / [i915#2575]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@v3d/v3d_submit_cl@bad-pad.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#2575]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#2575]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@v3d/v3d_wait_bo@used-bo-1ns.html
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2575]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#2575]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#7711]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-2/igt@vc4/vc4_tiling@set-bad-flags.html
* igt@vc4/vc4_tiling@set-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#7711]) +6 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-handle.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#7711]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#7711]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][263] ([i915#2842]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][265] ([i915#5493]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [INCOMPLETE][267] ([i915#5566]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk8/igt@gen9_exec_parse@allowed-all.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][269] ([i915#9200] / [i915#9849]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][271] ([i915#7790]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb2/igt@i915_pm_rps@reset.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][273] ([i915#7984]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-8/igt@i915_power@sanity.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@i915_power@sanity.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][275] ([i915#5138]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][277] ([i915#3743]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][279] ([i915#2346]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [FAIL][281] ([i915#6880]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [SKIP][283] ([fdo#109271]) -> [PASS][284] +11 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][285] ([i915#9519]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [SKIP][287] ([i915#9519]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [ABORT][289] ([i915#8875]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-90.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][291] ([i915#9196]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
- shard-tglu: [FAIL][293] ([i915#9196]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg1: [FAIL][295] ([i915#4349]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vcs0.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][297] ([i915#9364]) -> [ABORT][298] ([i915#9846])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: [WARN][299] ([i915#2658]) -> [INCOMPLETE][300] ([i915#10042])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk9/igt@gem_pwrite@basic-exhaustion.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][301] ([i915#1982] / [i915#9820] / [i915#9849]) -> [ABORT][302] ([i915#9820])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: [FAIL][303] ([i915#8247]) -> [DMESG-FAIL][304] ([i915#8561]) +3 other tests dmesg-fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_content_protection@lic:
- shard-snb: [INCOMPLETE][305] ([i915#8816]) -> [SKIP][306] ([fdo#109271])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb7/igt@kms_content_protection@lic.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb5/igt@kms_content_protection@lic.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][307] ([fdo#110189] / [i915#3955]) -> [SKIP][308] ([i915#3955])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][309] ([i915#9295]) -> [SKIP][310] ([i915#3361])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][311] ([i915#4281]) -> [SKIP][312] ([i915#3361])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7677 -> IGTPW_10545
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14132: b42f47ca5fff1d04fb8eb02d64520b3f338a495d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ 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_10545/index.html
[-- Attachment #2: Type: text/html, Size: 100546 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Fi.CI.IGT: success for Cache xe_device info for lease fd (rev5)
2024-01-17 14:13 [PATCH v4 0/3] Cache xe_device info for lease fd Mohammed Thasleem
` (8 preceding siblings ...)
2024-01-17 19:41 ` ✗ Fi.CI.IGT: failure for Cache xe_device info for lease fd (rev5) Patchwork
@ 2024-01-18 7:14 ` Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-01-18 7:14 UTC (permalink / raw)
To: Mohammed Thasleem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82836 bytes --]
== Series Details ==
Series: Cache xe_device info for lease fd (rev5)
URL : https://patchwork.freedesktop.org/series/128101/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14132_full -> IGTPW_10545_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): pig-kbl-iris
New tests
---------
New tests have been introduced between CI_DRM_14132_full and IGTPW_10545_full:
### New IGT tests (2) ###
* igt@gem_exec_fair@basic-pace-share@rcs0:
- Statuses : 1 pass(s)
- Exec time: [6.93] s
* igt@gem_exec_fair@basic-pace@vcs1:
- Statuses : 1 fail(s)
- Exec time: [4.41] s
Known issues
------------
Here are the changes found in IGTPW_10545_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][1] ([i915#6122])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@api_intel_bb@render-ccs.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#7701]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@vcs1:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +11 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@drm_fdinfo@isolation@vcs1.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6335])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][6] ([fdo#109314])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8555])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#280])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][9] ([i915#10030] / [i915#7975] / [i915#8213] / [i915#8398])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][10] -> [FAIL][11] ([i915#5784])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-10/igt@gem_eio@kms.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][12] -> [FAIL][13] ([i915#5784]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-12/igt@gem_eio@reset-stress.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][14] ([i915#5784])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#4812])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#4525]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][17] ([i915#9606])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][18] ([i915#9606])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][19] -> [FAIL][20] ([i915#2846])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][23] ([i915#2842])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2876])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][26] -> [FAIL][27] ([i915#2842]) +2 other tests fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_gttfill@multigpu-basic.html
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#7697]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#7697])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-rkl: NOTRUN -> [SKIP][35] ([fdo#109283])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613] / [i915#7582])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4565])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#4613]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@gem_mmap_gtt@coherency.html
- shard-rkl: NOTRUN -> [SKIP][52] ([fdo#111656])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +10 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@hang:
- shard-snb: [PASS][54] -> [ABORT][55] ([i915#8852])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb5/igt@gem_mmap_gtt@hang.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb6/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [INCOMPLETE][59] ([i915#10042])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4270]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-3/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271]) +227 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4079])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@gem_render_tiled_blits@basic.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#8411])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3297]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#4958])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4958])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_tiledx_blits:
- shard-rkl: NOTRUN -> [SKIP][73] ([fdo#109289])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109289]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [INCOMPLETE][75] ([i915#5566])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk9/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][81] -> [INCOMPLETE][82] ([i915#9849])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb4/igt@i915_module_load@reload-no-display.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb5/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [INCOMPLETE][83] ([i915#9697] / [i915#9849])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][84] -> [INCOMPLETE][85] ([i915#9200])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [WARN][86] ([i915#7356])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#6590])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#6621])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4387])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4387])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#7984])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#5723])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#5723])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#3826])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3826])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#8709]) +11 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#6228])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#1769] / [i915#3555])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][103] ([fdo#111614]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#5286]) +6 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][105] ([fdo#111614]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][106] ([fdo#111614] / [i915#3638]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][107] -> [FAIL][108] ([i915#3743]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3638])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111615]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190]) +9 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][114] ([fdo#111615])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][115] ([fdo#110723]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111615]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#2705])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-12/igt@kms_big_joiner@invalid-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#2705])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_big_joiner@invalid-modeset.html
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#2705])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5354] / [i915#6095]) +16 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +23 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#5354]) +70 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +22 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354]) +33 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3742])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4087]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#111827])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][129] ([fdo#111827]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-12/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#7828]) +7 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +9 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6944] / [i915#9424])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#9424])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-14/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3116])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#7118]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#7118])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8814]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#3359]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#3555]) +8 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#3555]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3359]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [i915#5354]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111825]) +13 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-tglu: NOTRUN -> [SKIP][150] ([fdo#109274])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#9067])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4103] / [i915#4213])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4103] / [i915#4213])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9723]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#9227])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#9723])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-14/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3804])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#8812]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#1839]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#1839])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-4/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#1839])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#658])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-19/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip:
- shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#9934]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#8381]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][171] ([fdo#109280]) +9 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][172] ([fdo#111825]) +15 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-snb: [PASS][173] -> [SKIP][174] ([fdo#109271]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1825]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#5439])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3458]) +18 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3023]) +24 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825] / [i915#1825]) +35 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#10070])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#10070])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#10070])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][184] ([fdo#110189]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8708]) +17 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][186] ([fdo#109271]) +70 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +9 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8708])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#6301])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#6301])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#6301])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][194] ([i915#7862]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3555]) +6 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5176]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9423]) +11 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9423]) +7 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#9423]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#5235]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#5235])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235] / [i915#9423]) +19 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#5235]) +11 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#5235]) +5 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9685]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#5978])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3361])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][208] -> [FAIL][209] ([i915#9295])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#9685])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9519])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#9519]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9519])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: NOTRUN -> [SKIP][214] ([fdo#109293] / [fdo#109506])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: [PASS][215] -> [INCOMPLETE][216] ([i915#10050])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-10/igt@kms_pm_rpm@system-suspend-modeset.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-5/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#6524])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9683])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#9683]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#9683]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9683]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#9683]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-15/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#5289])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#4235])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][225] ([fdo#111615] / [i915#5289])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#4235] / [i915#5190])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-16/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][228] -> [FAIL][229] ([i915#9196])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][230] ([fdo#109271] / [i915#2437]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#2437] / [i915#9412])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#2437])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#2437])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#2437])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][235] -> [FAIL][236] ([i915#4349])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#8850])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-rkl: NOTRUN -> [SKIP][238] ([fdo#112283])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@perf_pmu@event-wait@rcs0.html
- shard-dg1: NOTRUN -> [SKIP][239] ([fdo#112283])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-12/igt@perf_pmu@event-wait@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8807])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-4/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][241] ([i915#6806])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#8516])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8516])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#8516])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109295] / [i915#3291] / [i915#3708])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3708] / [i915#4077])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#3291] / [i915#3708])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9917]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#9917])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9917])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][251] ([i915#9781])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][252] ([fdo#109307] / [i915#4818])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_submit_cl@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109315]) +13 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@v3d/v3d_submit_cl@bad-pad.html
- shard-tglu: NOTRUN -> [SKIP][254] ([fdo#109315] / [i915#2575]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-5/igt@v3d/v3d_submit_cl@bad-pad.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#2575]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#2575]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-18/igt@v3d/v3d_wait_bo@used-bo-1ns.html
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2575]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#2575]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-10/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#7711]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-2/igt@vc4/vc4_tiling@set-bad-flags.html
* igt@vc4/vc4_tiling@set-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#7711]) +6 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-handle.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#7711]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#7711]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][263] ([i915#2842]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][265] ([i915#5493]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [INCOMPLETE][267] ([i915#5566]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk8/igt@gen9_exec_parse@allowed-all.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk1/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][269] ([i915#9200] / [i915#9849]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][271] ([i915#7790]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb2/igt@i915_pm_rps@reset.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][273] ([i915#7984]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-8/igt@i915_power@sanity.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-7/igt@i915_power@sanity.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][275] ([i915#5138]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][277] ([i915#3743]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][279] ([i915#2346]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [FAIL][281] ([i915#6880]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [SKIP][283] ([fdo#109271]) -> [PASS][284] +11 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][285] ([i915#9519]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [SKIP][287] ([i915#9519]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [ABORT][289] ([i915#8875]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-90.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][291] ([i915#9196]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
- shard-tglu: [FAIL][293] ([i915#9196]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg1: [FAIL][295] ([i915#4349]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vcs0.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][297] ([i915#9364]) -> [ABORT][298] ([i915#9846])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: [WARN][299] ([i915#2658]) -> [INCOMPLETE][300] ([i915#10042])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-glk9/igt@gem_pwrite@basic-exhaustion.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-glk3/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][301] ([i915#1982] / [i915#9820] / [i915#9849]) -> [ABORT][302] ([i915#9820])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: [FAIL][303] ([i915#8247]) -> [DMESG-FAIL][304] ([i915#8561]) +3 other tests dmesg-fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_content_protection@lic:
- shard-snb: [INCOMPLETE][305] ([i915#8816]) -> [SKIP][306] ([fdo#109271])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-snb7/igt@kms_content_protection@lic.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-snb5/igt@kms_content_protection@lic.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][307] ([fdo#110189] / [i915#3955]) -> [SKIP][308] ([i915#3955])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][309] ([i915#9295]) -> [SKIP][310] ([i915#3361])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][311] ([i915#4281]) -> [SKIP][312] ([i915#3361])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14132/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10050]: https://gitlab.freedesktop.org/drm/intel/issues/10050
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8852]: https://gitlab.freedesktop.org/drm/intel/issues/8852
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7677 -> IGTPW_10545
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14132: b42f47ca5fff1d04fb8eb02d64520b3f338a495d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10545/index.html
IGT_7677: 57ed393a5b5d04e985f9950a7f1546fc95f4001e @ 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_10545/index.html
[-- Attachment #2: Type: text/html, Size: 100562 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread