* [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep
@ 2025-08-26 17:50 Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 1/2] Revert "drm/xe: Add VM bind IOCTL error injection" Jonathan Cavitt
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Jonathan Cavitt @ 2025-08-26 17:50 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, john.c.harrison,
matthew.brost
Error injection should use the error injection interface, and should be
decoupled from CONFIG_DRM_XE_DEBUG. Remove TEST_VM_OPS_ERROR from the
code, and add error injection support to the function
vm_bind_ioctl_ops_lock_and_prep. This necessitates marking the function
as noinline.
Jonathan Cavitt (2):
Revert "drm/xe: Add VM bind IOCTL error injection"
drm/xe/xe_vm: Add error injection support to lock and prep
drivers/gpu/drm/xe/xe_device_types.h | 12 -----------
drivers/gpu/drm/xe/xe_pt.c | 12 -----------
drivers/gpu/drm/xe/xe_vm.c | 31 ++++++----------------------
drivers/gpu/drm/xe/xe_vm_types.h | 14 -------------
4 files changed, 6 insertions(+), 63 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] Revert "drm/xe: Add VM bind IOCTL error injection"
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
@ 2025-08-26 17:50 ` Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 2/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Jonathan Cavitt @ 2025-08-26 17:50 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, john.c.harrison,
matthew.brost
This reverts commit 04e9c0ce19ac68afd8be7fd54772db3b0356cf75.
Error injection should use the error injection interface, and should be
decoupled from CONFIG_DRM_XE_DEBUG.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_device_types.h | 12 ------------
drivers/gpu/drm/xe/xe_pt.c | 12 ------------
drivers/gpu/drm/xe/xe_vm.c | 23 +----------------------
drivers/gpu/drm/xe/xe_vm_types.h | 14 --------------
4 files changed, 1 insertion(+), 60 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 71fc29b3372a..42a7d910ca70 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -27,10 +27,6 @@
#include "xe_step_types.h"
#include "xe_survivability_mode_types.h"
-#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
-#define TEST_VM_OPS_ERROR
-#endif
-
struct dram_info;
struct intel_display;
struct intel_dg_nvm_dev;
@@ -565,14 +561,6 @@ struct xe_device {
/** @atomic_svm_timeslice_ms: Atomic SVM fault timeslice MS */
u32 atomic_svm_timeslice_ms;
-#ifdef TEST_VM_OPS_ERROR
- /**
- * @vm_inject_error_position: inject errors at different places in VM
- * bind IOCTL based on this value
- */
- u8 vm_inject_error_position;
-#endif
-
#if IS_ENABLED(CONFIG_TRACE_GPU_MEM)
/**
* @global_total_pages: global GPU page usage tracked for gpu_mem
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index c0a70c80dff9..e7bccccdbc44 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -2160,12 +2160,6 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops)
xe_tile_assert(tile, pt_update_ops->current_op <=
pt_update_ops->num_ops);
-#ifdef TEST_VM_OPS_ERROR
- if (vops->inject_error &&
- vops->vm->xe->vm_inject_error_position == FORCE_OP_ERROR_PREPARE)
- return -ENOSPC;
-#endif
-
return 0;
}
ALLOW_ERROR_INJECTION(xe_pt_update_ops_prepare, ERRNO);
@@ -2396,12 +2390,6 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
return dma_fence_get_stub();
}
-#ifdef TEST_VM_OPS_ERROR
- if (vops->inject_error &&
- vm->xe->vm_inject_error_position == FORCE_OP_ERROR_RUN)
- return ERR_PTR(-ENOSPC);
-#endif
-
if (pt_update_ops->needs_invalidation) {
ijob = xe_gt_tlb_inval_job_create(pt_update_ops->q,
tile->primary_gt,
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index e913efa2057b..1a8841116e40 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3218,12 +3218,6 @@ static int vm_bind_ioctl_ops_lock_and_prep(struct drm_exec *exec,
return err;
}
-#ifdef TEST_VM_OPS_ERROR
- if (vops->inject_error &&
- vm->xe->vm_inject_error_position == FORCE_OP_ERROR_LOCK)
- return -ENOSPC;
-#endif
-
return 0;
}
@@ -3467,7 +3461,7 @@ static struct dma_fence *vm_bind_ioctl_ops_execute(struct xe_vm *vm,
}
ALLOW_ERROR_INJECTION(vm_bind_ioctl_ops_execute, ERRNO);
-#define SUPPORTED_FLAGS_STUB \
+#define SUPPORTED_FLAGS \
(DRM_XE_VM_BIND_FLAG_READONLY | \
DRM_XE_VM_BIND_FLAG_IMMEDIATE | \
DRM_XE_VM_BIND_FLAG_NULL | \
@@ -3475,12 +3469,6 @@ ALLOW_ERROR_INJECTION(vm_bind_ioctl_ops_execute, ERRNO);
DRM_XE_VM_BIND_FLAG_CHECK_PXP | \
DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR)
-#ifdef TEST_VM_OPS_ERROR
-#define SUPPORTED_FLAGS (SUPPORTED_FLAGS_STUB | FORCE_OP_ERROR)
-#else
-#define SUPPORTED_FLAGS SUPPORTED_FLAGS_STUB
-#endif
-
#define XE_64K_PAGE_MASK 0xffffull
#define ALL_DRM_XE_SYNCS_FLAGS (DRM_XE_SYNCS_FLAG_WAIT_FOR_OP)
@@ -3863,15 +3851,6 @@ int xe_vm_bind_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
err = vm_bind_ioctl_ops_parse(vm, ops[i], &vops);
if (err)
goto unwind_ops;
-
-#ifdef TEST_VM_OPS_ERROR
- if (flags & FORCE_OP_ERROR) {
- vops.inject_error = true;
- vm->xe->vm_inject_error_position =
- (vm->xe->vm_inject_error_position + 1) %
- FORCE_OP_ERROR_COUNT;
- }
-#endif
}
/* Nothing to do */
diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index b5108d010786..a7a9e80777f3 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -25,16 +25,6 @@ struct xe_user_fence;
struct xe_vm;
struct xe_vm_pgtable_update_op;
-#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
-#define TEST_VM_OPS_ERROR
-#define FORCE_OP_ERROR BIT(31)
-
-#define FORCE_OP_ERROR_LOCK 0
-#define FORCE_OP_ERROR_PREPARE 1
-#define FORCE_OP_ERROR_RUN 2
-#define FORCE_OP_ERROR_COUNT 3
-#endif
-
#define XE_VMA_READ_ONLY DRM_GPUVA_USERBITS
#define XE_VMA_DESTROYED (DRM_GPUVA_USERBITS << 1)
#define XE_VMA_ATOMIC_PTE_BIT (DRM_GPUVA_USERBITS << 2)
@@ -512,10 +502,6 @@ struct xe_vma_ops {
#define XE_VMA_OPS_FLAG_HAS_SVM_PREFETCH BIT(0)
#define XE_VMA_OPS_FLAG_MADVISE BIT(1)
u32 flags;
-#ifdef TEST_VM_OPS_ERROR
- /** @inject_error: inject error to test error handling */
- bool inject_error;
-#endif
};
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 1/2] Revert "drm/xe: Add VM bind IOCTL error injection" Jonathan Cavitt
@ 2025-08-26 17:50 ` Jonathan Cavitt
2025-08-26 17:56 ` ✗ CI.checkpatch: warning for " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Jonathan Cavitt @ 2025-08-26 17:50 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, john.c.harrison,
matthew.brost
Add error injection support to the function
vm_bind_ioctl_ops_lock_and_prep. This necessitates marking the function
as noinline.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 1a8841116e40..e527c90b8c33 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3201,9 +3201,10 @@ static int vm_bind_ioctl_ops_prefetch_ranges(struct xe_vm *vm, struct xe_vma_ops
return 0;
}
-static int vm_bind_ioctl_ops_lock_and_prep(struct drm_exec *exec,
- struct xe_vm *vm,
- struct xe_vma_ops *vops)
+static noinline int
+vm_bind_ioctl_ops_lock_and_prep(struct drm_exec *exec,
+ struct xe_vm *vm,
+ struct xe_vma_ops *vops)
{
struct xe_vma_op *op;
int err;
@@ -3220,6 +3221,7 @@ static int vm_bind_ioctl_ops_lock_and_prep(struct drm_exec *exec,
return 0;
}
+ALLOW_ERROR_INJECTION(vm_bind_ioctl_ops_lock_and_prep, ERRNO);
static void op_trace(struct xe_vma_op *op)
{
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 1/2] Revert "drm/xe: Add VM bind IOCTL error injection" Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 2/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
@ 2025-08-26 17:56 ` Patchwork
2025-08-26 17:57 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-26 17:56 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
== Series Details ==
Series: drm/xe/xe_vm: Add error injection support to lock and prep
URL : https://patchwork.freedesktop.org/series/153526/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
3d03f9c7415eef22222cbd23bd34661d54379252
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 73508b9472631ad184131f484040e68059438b04
Author: Jonathan Cavitt <jonathan.cavitt@intel.com>
Date: Tue Aug 26 17:50:54 2025 +0000
drm/xe/xe_vm: Add error injection support to lock and prep
Add error injection support to the function
vm_bind_ioctl_ops_lock_and_prep. This necessitates marking the function
as noinline.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
+ /mt/dim checkpatch 4b94f8fef771cb0b1d0131675e2d794ef6464907 drm-intel
dcb2f26d90e7 Revert "drm/xe: Add VM bind IOCTL error injection"
-:96: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#96: FILE: drivers/gpu/drm/xe/xe_vm.c:3464:
+#define SUPPORTED_FLAGS \
(DRM_XE_VM_BIND_FLAG_READONLY | \
DRM_XE_VM_BIND_FLAG_IMMEDIATE | \
DRM_XE_VM_BIND_FLAG_NULL | \
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
total: 1 errors, 0 warnings, 0 checks, 121 lines checked
73508b947263 drm/xe/xe_vm: Add error injection support to lock and prep
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.KUnit: success for drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
` (2 preceding siblings ...)
2025-08-26 17:56 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-08-26 17:57 ` Patchwork
2025-08-26 18:50 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-26 17:57 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
== Series Details ==
Series: drm/xe/xe_vm: Add error injection support to lock and prep
URL : https://patchwork.freedesktop.org/series/153526/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:56:09] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:56:13] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:56:42] Starting KUnit Kernel (1/1)...
[17:56:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:56:43] ================== guc_buf (11 subtests) ===================
[17:56:43] [PASSED] test_smallest
[17:56:43] [PASSED] test_largest
[17:56:43] [PASSED] test_granular
[17:56:43] [PASSED] test_unique
[17:56:43] [PASSED] test_overlap
[17:56:43] [PASSED] test_reusable
[17:56:43] [PASSED] test_too_big
[17:56:43] [PASSED] test_flush
[17:56:43] [PASSED] test_lookup
[17:56:43] [PASSED] test_data
[17:56:43] [PASSED] test_class
[17:56:43] ===================== [PASSED] guc_buf =====================
[17:56:43] =================== guc_dbm (7 subtests) ===================
[17:56:43] [PASSED] test_empty
[17:56:43] [PASSED] test_default
[17:56:43] ======================== test_size ========================
[17:56:43] [PASSED] 4
[17:56:43] [PASSED] 8
[17:56:43] [PASSED] 32
[17:56:43] [PASSED] 256
[17:56:43] ==================== [PASSED] test_size ====================
[17:56:43] ======================= test_reuse ========================
[17:56:43] [PASSED] 4
[17:56:43] [PASSED] 8
[17:56:43] [PASSED] 32
[17:56:43] [PASSED] 256
[17:56:43] =================== [PASSED] test_reuse ====================
[17:56:43] =================== test_range_overlap ====================
[17:56:43] [PASSED] 4
[17:56:43] [PASSED] 8
[17:56:43] [PASSED] 32
[17:56:43] [PASSED] 256
[17:56:43] =============== [PASSED] test_range_overlap ================
[17:56:43] =================== test_range_compact ====================
[17:56:43] [PASSED] 4
[17:56:43] [PASSED] 8
[17:56:43] [PASSED] 32
[17:56:43] [PASSED] 256
[17:56:43] =============== [PASSED] test_range_compact ================
[17:56:43] ==================== test_range_spare =====================
[17:56:43] [PASSED] 4
[17:56:43] [PASSED] 8
[17:56:43] [PASSED] 32
[17:56:43] [PASSED] 256
[17:56:43] ================ [PASSED] test_range_spare =================
[17:56:43] ===================== [PASSED] guc_dbm =====================
[17:56:43] =================== guc_idm (6 subtests) ===================
[17:56:43] [PASSED] bad_init
[17:56:43] [PASSED] no_init
[17:56:43] [PASSED] init_fini
[17:56:43] [PASSED] check_used
[17:56:43] [PASSED] check_quota
[17:56:43] [PASSED] check_all
[17:56:43] ===================== [PASSED] guc_idm =====================
[17:56:43] ================== no_relay (3 subtests) ===================
[17:56:43] [PASSED] xe_drops_guc2pf_if_not_ready
[17:56:43] [PASSED] xe_drops_guc2vf_if_not_ready
[17:56:43] [PASSED] xe_rejects_send_if_not_ready
[17:56:43] ==================== [PASSED] no_relay =====================
[17:56:43] ================== pf_relay (14 subtests) ==================
[17:56:43] [PASSED] pf_rejects_guc2pf_too_short
[17:56:43] [PASSED] pf_rejects_guc2pf_too_long
[17:56:43] [PASSED] pf_rejects_guc2pf_no_payload
[17:56:43] [PASSED] pf_fails_no_payload
[17:56:43] [PASSED] pf_fails_bad_origin
[17:56:43] [PASSED] pf_fails_bad_type
[17:56:43] [PASSED] pf_txn_reports_error
[17:56:43] [PASSED] pf_txn_sends_pf2guc
[17:56:43] [PASSED] pf_sends_pf2guc
[17:56:43] [SKIPPED] pf_loopback_nop
[17:56:43] [SKIPPED] pf_loopback_echo
[17:56:43] [SKIPPED] pf_loopback_fail
[17:56:43] [SKIPPED] pf_loopback_busy
[17:56:43] [SKIPPED] pf_loopback_retry
[17:56:43] ==================== [PASSED] pf_relay =====================
[17:56:43] ================== vf_relay (3 subtests) ===================
[17:56:43] [PASSED] vf_rejects_guc2vf_too_short
[17:56:43] [PASSED] vf_rejects_guc2vf_too_long
[17:56:43] [PASSED] vf_rejects_guc2vf_no_payload
[17:56:43] ==================== [PASSED] vf_relay =====================
[17:56:43] ===================== lmtt (1 subtest) =====================
[17:56:43] ======================== test_ops =========================
[17:56:43] [PASSED] 2-level
[17:56:43] [PASSED] multi-level
[17:56:43] ==================== [PASSED] test_ops =====================
[17:56:43] ====================== [PASSED] lmtt =======================
[17:56:43] ================= pf_service (11 subtests) =================
[17:56:43] [PASSED] pf_negotiate_any
[17:56:43] [PASSED] pf_negotiate_base_match
[17:56:43] [PASSED] pf_negotiate_base_newer
[17:56:43] [PASSED] pf_negotiate_base_next
[17:56:43] [SKIPPED] pf_negotiate_base_older
[17:56:43] [PASSED] pf_negotiate_base_prev
[17:56:43] [PASSED] pf_negotiate_latest_match
[17:56:43] [PASSED] pf_negotiate_latest_newer
[17:56:43] [PASSED] pf_negotiate_latest_next
[17:56:43] [SKIPPED] pf_negotiate_latest_older
[17:56:43] [SKIPPED] pf_negotiate_latest_prev
[17:56:43] =================== [PASSED] pf_service ====================
[17:56:43] =================== xe_mocs (2 subtests) ===================
[17:56:43] ================ xe_live_mocs_kernel_kunit ================
[17:56:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:56:43] ================ xe_live_mocs_reset_kunit =================
[17:56:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:56:43] ==================== [SKIPPED] xe_mocs =====================
[17:56:43] ================= xe_migrate (2 subtests) ==================
[17:56:43] ================= xe_migrate_sanity_kunit =================
[17:56:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:56:43] ================== xe_validate_ccs_kunit ==================
[17:56:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:56:43] =================== [SKIPPED] xe_migrate ===================
[17:56:43] ================== xe_dma_buf (1 subtest) ==================
[17:56:43] ==================== xe_dma_buf_kunit =====================
[17:56:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:56:43] =================== [SKIPPED] xe_dma_buf ===================
[17:56:43] ================= xe_bo_shrink (1 subtest) =================
[17:56:43] =================== xe_bo_shrink_kunit ====================
[17:56:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:56:43] ================== [SKIPPED] xe_bo_shrink ==================
[17:56:43] ==================== xe_bo (2 subtests) ====================
[17:56:43] ================== xe_ccs_migrate_kunit ===================
[17:56:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:56:43] ==================== xe_bo_evict_kunit ====================
[17:56:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:56:43] ===================== [SKIPPED] xe_bo ======================
[17:56:43] ==================== args (11 subtests) ====================
[17:56:43] [PASSED] count_args_test
[17:56:43] [PASSED] call_args_example
[17:56:43] [PASSED] call_args_test
[17:56:43] [PASSED] drop_first_arg_example
[17:56:43] [PASSED] drop_first_arg_test
[17:56:43] [PASSED] first_arg_example
[17:56:43] [PASSED] first_arg_test
[17:56:43] [PASSED] last_arg_example
[17:56:43] [PASSED] last_arg_test
[17:56:43] [PASSED] pick_arg_example
[17:56:43] [PASSED] sep_comma_example
[17:56:43] ====================== [PASSED] args =======================
[17:56:43] =================== xe_pci (3 subtests) ====================
[17:56:43] ==================== check_graphics_ip ====================
[17:56:43] [PASSED] 12.70 Xe_LPG
[17:56:43] [PASSED] 12.71 Xe_LPG
[17:56:43] [PASSED] 12.74 Xe_LPG+
[17:56:43] [PASSED] 20.01 Xe2_HPG
[17:56:43] [PASSED] 20.02 Xe2_HPG
[17:56:43] [PASSED] 20.04 Xe2_LPG
[17:56:43] [PASSED] 30.00 Xe3_LPG
[17:56:43] [PASSED] 30.01 Xe3_LPG
[17:56:43] [PASSED] 30.03 Xe3_LPG
[17:56:43] ================ [PASSED] check_graphics_ip ================
[17:56:43] ===================== check_media_ip ======================
[17:56:43] [PASSED] 13.00 Xe_LPM+
[17:56:43] [PASSED] 13.01 Xe2_HPM
[17:56:43] [PASSED] 20.00 Xe2_LPM
[17:56:43] [PASSED] 30.00 Xe3_LPM
[17:56:43] [PASSED] 30.02 Xe3_LPM
[17:56:43] ================= [PASSED] check_media_ip ==================
[17:56:43] ================= check_platform_gt_count =================
[17:56:43] [PASSED] 0x9A60 (TIGERLAKE)
[17:56:43] [PASSED] 0x9A68 (TIGERLAKE)
[17:56:43] [PASSED] 0x9A70 (TIGERLAKE)
[17:56:43] [PASSED] 0x9A40 (TIGERLAKE)
[17:56:43] [PASSED] 0x9A49 (TIGERLAKE)
[17:56:43] [PASSED] 0x9A59 (TIGERLAKE)
[17:56:43] [PASSED] 0x9A78 (TIGERLAKE)
[17:56:43] [PASSED] 0x9AC0 (TIGERLAKE)
[17:56:43] [PASSED] 0x9AC9 (TIGERLAKE)
[17:56:43] [PASSED] 0x9AD9 (TIGERLAKE)
[17:56:43] [PASSED] 0x9AF8 (TIGERLAKE)
[17:56:43] [PASSED] 0x4C80 (ROCKETLAKE)
[17:56:43] [PASSED] 0x4C8A (ROCKETLAKE)
[17:56:43] [PASSED] 0x4C8B (ROCKETLAKE)
[17:56:43] [PASSED] 0x4C8C (ROCKETLAKE)
[17:56:43] [PASSED] 0x4C90 (ROCKETLAKE)
[17:56:43] [PASSED] 0x4C9A (ROCKETLAKE)
[17:56:43] [PASSED] 0x4680 (ALDERLAKE_S)
[17:56:43] [PASSED] 0x4682 (ALDERLAKE_S)
[17:56:43] [PASSED] 0x4688 (ALDERLAKE_S)
[17:56:43] [PASSED] 0x468A (ALDERLAKE_S)
[17:56:43] [PASSED] 0x468B (ALDERLAKE_S)
[17:56:43] [PASSED] 0x4690 (ALDERLAKE_S)
[17:56:43] [PASSED] 0x4692 (ALDERLAKE_S)
[17:56:43] [PASSED] 0x4693 (ALDERLAKE_S)
[17:56:43] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46AA (ALDERLAKE_P)
[17:56:43] [PASSED] 0x462A (ALDERLAKE_P)
[17:56:43] [PASSED] 0x4626 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x4628 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:56:43] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:56:43] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:56:43] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:56:43] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:56:43] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:56:43] [PASSED] 0xA721 (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA720 (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:56:43] [PASSED] 0xA780 (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA781 (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA782 (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA783 (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA788 (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA789 (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA78A (ALDERLAKE_S)
[17:56:43] [PASSED] 0xA78B (ALDERLAKE_S)
[17:56:43] [PASSED] 0x4905 (DG1)
[17:56:43] [PASSED] 0x4906 (DG1)
[17:56:43] [PASSED] 0x4907 (DG1)
[17:56:43] [PASSED] 0x4908 (DG1)
[17:56:43] [PASSED] 0x4909 (DG1)
[17:56:43] [PASSED] 0x56C0 (DG2)
[17:56:43] [PASSED] 0x56C2 (DG2)
[17:56:43] [PASSED] 0x56C1 (DG2)
[17:56:43] [PASSED] 0x7D51 (METEORLAKE)
[17:56:43] [PASSED] 0x7DD1 (METEORLAKE)
[17:56:43] [PASSED] 0x7D41 (METEORLAKE)
[17:56:43] [PASSED] 0x7D67 (METEORLAKE)
[17:56:43] [PASSED] 0xB640 (METEORLAKE)
[17:56:43] [PASSED] 0x56A0 (DG2)
[17:56:43] [PASSED] 0x56A1 (DG2)
[17:56:43] [PASSED] 0x56A2 (DG2)
[17:56:43] [PASSED] 0x56BE (DG2)
[17:56:43] [PASSED] 0x56BF (DG2)
[17:56:43] [PASSED] 0x5690 (DG2)
[17:56:43] [PASSED] 0x5691 (DG2)
[17:56:43] [PASSED] 0x5692 (DG2)
[17:56:43] [PASSED] 0x56A5 (DG2)
[17:56:43] [PASSED] 0x56A6 (DG2)
[17:56:43] [PASSED] 0x56B0 (DG2)
[17:56:43] [PASSED] 0x56B1 (DG2)
[17:56:43] [PASSED] 0x56BA (DG2)
[17:56:43] [PASSED] 0x56BB (DG2)
[17:56:43] [PASSED] 0x56BC (DG2)
[17:56:43] [PASSED] 0x56BD (DG2)
[17:56:43] [PASSED] 0x5693 (DG2)
[17:56:43] [PASSED] 0x5694 (DG2)
[17:56:43] [PASSED] 0x5695 (DG2)
[17:56:43] [PASSED] 0x56A3 (DG2)
[17:56:43] [PASSED] 0x56A4 (DG2)
[17:56:43] [PASSED] 0x56B2 (DG2)
[17:56:43] [PASSED] 0x56B3 (DG2)
[17:56:43] [PASSED] 0x5696 (DG2)
[17:56:43] [PASSED] 0x5697 (DG2)
[17:56:43] [PASSED] 0xB69 (PVC)
[17:56:43] [PASSED] 0xB6E (PVC)
[17:56:43] [PASSED] 0xBD4 (PVC)
[17:56:43] [PASSED] 0xBD5 (PVC)
[17:56:43] [PASSED] 0xBD6 (PVC)
[17:56:43] [PASSED] 0xBD7 (PVC)
[17:56:43] [PASSED] 0xBD8 (PVC)
[17:56:43] [PASSED] 0xBD9 (PVC)
[17:56:43] [PASSED] 0xBDA (PVC)
[17:56:43] [PASSED] 0xBDB (PVC)
[17:56:43] [PASSED] 0xBE0 (PVC)
[17:56:43] [PASSED] 0xBE1 (PVC)
[17:56:43] [PASSED] 0xBE5 (PVC)
[17:56:43] [PASSED] 0x7D40 (METEORLAKE)
[17:56:43] [PASSED] 0x7D45 (METEORLAKE)
[17:56:43] [PASSED] 0x7D55 (METEORLAKE)
[17:56:43] [PASSED] 0x7D60 (METEORLAKE)
[17:56:43] [PASSED] 0x7DD5 (METEORLAKE)
[17:56:43] [PASSED] 0x6420 (LUNARLAKE)
[17:56:43] [PASSED] 0x64A0 (LUNARLAKE)
[17:56:43] [PASSED] 0x64B0 (LUNARLAKE)
[17:56:43] [PASSED] 0xE202 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE209 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE20B (BATTLEMAGE)
[17:56:43] [PASSED] 0xE20C (BATTLEMAGE)
[17:56:43] [PASSED] 0xE20D (BATTLEMAGE)
[17:56:43] [PASSED] 0xE210 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE211 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE212 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE216 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE220 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE221 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE222 (BATTLEMAGE)
[17:56:43] [PASSED] 0xE223 (BATTLEMAGE)
[17:56:43] [PASSED] 0xB080 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB081 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB082 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB083 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB084 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB085 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB086 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB087 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB08F (PANTHERLAKE)
[17:56:43] [PASSED] 0xB090 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:56:43] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:56:43] [PASSED] 0xFD80 (PANTHERLAKE)
[17:56:43] [PASSED] 0xFD81 (PANTHERLAKE)
[17:56:43] ============= [PASSED] check_platform_gt_count =============
[17:56:43] ===================== [PASSED] xe_pci ======================
[17:56:43] =================== xe_rtp (2 subtests) ====================
[17:56:43] =============== xe_rtp_process_to_sr_tests ================
[17:56:43] [PASSED] coalesce-same-reg
[17:56:43] [PASSED] no-match-no-add
[17:56:43] [PASSED] match-or
[17:56:43] [PASSED] match-or-xfail
[17:56:43] [PASSED] no-match-no-add-multiple-rules
[17:56:43] [PASSED] two-regs-two-entries
[17:56:43] [PASSED] clr-one-set-other
[17:56:43] [PASSED] set-field
[17:56:43] [PASSED] conflict-duplicate
[17:56:43] [PASSED] conflict-not-disjoint
[17:56:43] [PASSED] conflict-reg-type
[17:56:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:56:43] ================== xe_rtp_process_tests ===================
[17:56:43] [PASSED] active1
[17:56:43] [PASSED] active2
[17:56:43] [PASSED] active-inactive
[17:56:43] [PASSED] inactive-active
[17:56:43] [PASSED] inactive-1st_or_active-inactive
[17:56:43] [PASSED] inactive-2nd_or_active-inactive
[17:56:43] [PASSED] inactive-last_or_active-inactive
[17:56:43] [PASSED] inactive-no_or_active-inactive
[17:56:43] ============== [PASSED] xe_rtp_process_tests ===============
[17:56:43] ===================== [PASSED] xe_rtp ======================
[17:56:43] ==================== xe_wa (1 subtest) =====================
[17:56:43] ======================== xe_wa_gt =========================
[17:56:43] [PASSED] TIGERLAKE (B0)
[17:56:43] [PASSED] DG1 (A0)
[17:56:43] [PASSED] DG1 (B0)
[17:56:43] [PASSED] ALDERLAKE_S (A0)
[17:56:43] [PASSED] ALDERLAKE_S (B0)
[17:56:43] [PASSED] ALDERLAKE_S (C0)
[17:56:43] [PASSED] ALDERLAKE_S (D0)
[17:56:43] [PASSED] ALDERLAKE_P (A0)
[17:56:43] [PASSED] ALDERLAKE_P (B0)
[17:56:43] [PASSED] ALDERLAKE_P (C0)
[17:56:43] [PASSED] ALDERLAKE_S_RPLS (D0)
[17:56:43] [PASSED] ALDERLAKE_P_RPLU (E0)
[17:56:43] [PASSED] DG2_G10 (C0)
[17:56:43] [PASSED] DG2_G11 (B1)
[17:56:43] [PASSED] DG2_G12 (A1)
[17:56:43] [PASSED] METEORLAKE (g:A0, m:A0)
[17:56:43] [PASSED] METEORLAKE (g:A0, m:A0)
[17:56:43] [PASSED] METEORLAKE (g:A0, m:A0)
[17:56:43] [PASSED] LUNARLAKE (g:A0, m:A0)
[17:56:43] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[17:56:43] [PASSED] BATTLEMAGE (g:A0, m:A1)
[17:56:43] [PASSED] PANTHERLAKE (g:A0, m:A0)
[17:56:43] ==================== [PASSED] xe_wa_gt =====================
[17:56:43] ====================== [PASSED] xe_wa ======================
[17:56:43] ============================================================
[17:56:43] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[17:56:43] Elapsed time: 33.555s total, 4.214s configuring, 28.975s building, 0.325s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:56:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:56:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:57:08] Starting KUnit Kernel (1/1)...
[17:57:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:57:08] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:57:08] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:57:08] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:57:08] =========== drm_validate_clone_mode (2 subtests) ===========
[17:57:08] ============== drm_test_check_in_clone_mode ===============
[17:57:08] [PASSED] in_clone_mode
[17:57:08] [PASSED] not_in_clone_mode
[17:57:08] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:57:08] =============== drm_test_check_valid_clones ===============
[17:57:08] [PASSED] not_in_clone_mode
[17:57:08] [PASSED] valid_clone
[17:57:08] [PASSED] invalid_clone
[17:57:08] =========== [PASSED] drm_test_check_valid_clones ===========
[17:57:08] ============= [PASSED] drm_validate_clone_mode =============
[17:57:08] ============= drm_validate_modeset (1 subtest) =============
[17:57:08] [PASSED] drm_test_check_connector_changed_modeset
[17:57:08] ============== [PASSED] drm_validate_modeset ===============
[17:57:08] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:57:08] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:57:08] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:57:08] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:57:08] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:57:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:57:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:57:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:57:08] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:57:08] ============== drm_bridge_alloc (2 subtests) ===============
[17:57:08] [PASSED] drm_test_drm_bridge_alloc_basic
[17:57:08] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:57:08] ================ [PASSED] drm_bridge_alloc =================
[17:57:08] ================== drm_buddy (7 subtests) ==================
[17:57:08] [PASSED] drm_test_buddy_alloc_limit
[17:57:08] [PASSED] drm_test_buddy_alloc_optimistic
[17:57:08] [PASSED] drm_test_buddy_alloc_pessimistic
[17:57:08] [PASSED] drm_test_buddy_alloc_pathological
[17:57:08] [PASSED] drm_test_buddy_alloc_contiguous
[17:57:08] [PASSED] drm_test_buddy_alloc_clear
[17:57:08] [PASSED] drm_test_buddy_alloc_range_bias
[17:57:08] ==================== [PASSED] drm_buddy ====================
[17:57:08] ============= drm_cmdline_parser (40 subtests) =============
[17:57:08] [PASSED] drm_test_cmdline_force_d_only
[17:57:08] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:57:08] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:57:08] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:57:08] [PASSED] drm_test_cmdline_force_e_only
[17:57:08] [PASSED] drm_test_cmdline_res
[17:57:08] [PASSED] drm_test_cmdline_res_vesa
[17:57:08] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:57:08] [PASSED] drm_test_cmdline_res_rblank
[17:57:08] [PASSED] drm_test_cmdline_res_bpp
[17:57:08] [PASSED] drm_test_cmdline_res_refresh
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:57:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:57:08] [PASSED] drm_test_cmdline_res_margins_force_on
[17:57:08] [PASSED] drm_test_cmdline_res_vesa_margins
[17:57:08] [PASSED] drm_test_cmdline_name
[17:57:08] [PASSED] drm_test_cmdline_name_bpp
[17:57:08] [PASSED] drm_test_cmdline_name_option
[17:57:08] [PASSED] drm_test_cmdline_name_bpp_option
[17:57:08] [PASSED] drm_test_cmdline_rotate_0
[17:57:08] [PASSED] drm_test_cmdline_rotate_90
[17:57:08] [PASSED] drm_test_cmdline_rotate_180
[17:57:08] [PASSED] drm_test_cmdline_rotate_270
[17:57:08] [PASSED] drm_test_cmdline_hmirror
[17:57:08] [PASSED] drm_test_cmdline_vmirror
[17:57:08] [PASSED] drm_test_cmdline_margin_options
[17:57:08] [PASSED] drm_test_cmdline_multiple_options
[17:57:08] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:57:08] [PASSED] drm_test_cmdline_extra_and_option
[17:57:08] [PASSED] drm_test_cmdline_freestanding_options
[17:57:08] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:57:08] [PASSED] drm_test_cmdline_panel_orientation
[17:57:08] ================ drm_test_cmdline_invalid =================
[17:57:08] [PASSED] margin_only
[17:57:08] [PASSED] interlace_only
[17:57:08] [PASSED] res_missing_x
[17:57:08] [PASSED] res_missing_y
[17:57:08] [PASSED] res_bad_y
[17:57:08] [PASSED] res_missing_y_bpp
[17:57:08] [PASSED] res_bad_bpp
[17:57:08] [PASSED] res_bad_refresh
[17:57:08] [PASSED] res_bpp_refresh_force_on_off
[17:57:08] [PASSED] res_invalid_mode
[17:57:08] [PASSED] res_bpp_wrong_place_mode
[17:57:08] [PASSED] name_bpp_refresh
[17:57:08] [PASSED] name_refresh
[17:57:08] [PASSED] name_refresh_wrong_mode
[17:57:08] [PASSED] name_refresh_invalid_mode
[17:57:08] [PASSED] rotate_multiple
[17:57:08] [PASSED] rotate_invalid_val
[17:57:08] [PASSED] rotate_truncated
[17:57:08] [PASSED] invalid_option
[17:57:08] [PASSED] invalid_tv_option
[17:57:08] [PASSED] truncated_tv_option
[17:57:08] ============ [PASSED] drm_test_cmdline_invalid =============
[17:57:08] =============== drm_test_cmdline_tv_options ===============
[17:57:08] [PASSED] NTSC
[17:57:08] [PASSED] NTSC_443
[17:57:08] [PASSED] NTSC_J
[17:57:08] [PASSED] PAL
[17:57:08] [PASSED] PAL_M
[17:57:08] [PASSED] PAL_N
[17:57:08] [PASSED] SECAM
[17:57:08] [PASSED] MONO_525
[17:57:08] [PASSED] MONO_625
[17:57:08] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:57:08] =============== [PASSED] drm_cmdline_parser ================
[17:57:08] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:57:08] [PASSED] drm_test_connector_hdmi_init_valid
[17:57:08] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:57:08] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:57:08] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:57:08] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:57:08] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:57:08] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:57:08] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:57:08] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:57:08] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:57:08] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:57:08] [PASSED] supported_formats=0x3 yuv420_allowed=1
[17:57:08] [PASSED] supported_formats=0x3 yuv420_allowed=0
[17:57:08] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:57:08] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:57:08] [PASSED] drm_test_connector_hdmi_init_null_product
[17:57:08] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:57:08] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:57:08] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:57:08] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:57:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:57:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:57:08] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:57:08] ========= drm_test_connector_hdmi_init_type_valid =========
[17:57:08] [PASSED] HDMI-A
[17:57:08] [PASSED] HDMI-B
[17:57:08] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:57:08] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:57:08] [PASSED] Unknown
[17:57:08] [PASSED] VGA
[17:57:08] [PASSED] DVI-I
[17:57:08] [PASSED] DVI-D
[17:57:08] [PASSED] DVI-A
[17:57:08] [PASSED] Composite
[17:57:08] [PASSED] SVIDEO
[17:57:08] [PASSED] LVDS
[17:57:08] [PASSED] Component
[17:57:08] [PASSED] DIN
[17:57:08] [PASSED] DP
[17:57:08] [PASSED] TV
[17:57:08] [PASSED] eDP
[17:57:08] [PASSED] Virtual
[17:57:08] [PASSED] DSI
[17:57:08] [PASSED] DPI
[17:57:08] [PASSED] Writeback
[17:57:08] [PASSED] SPI
[17:57:08] [PASSED] USB
[17:57:08] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:57:08] ============ [PASSED] drmm_connector_hdmi_init =============
[17:57:08] ============= drmm_connector_init (3 subtests) =============
[17:57:08] [PASSED] drm_test_drmm_connector_init
[17:57:08] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:57:08] ========= drm_test_drmm_connector_init_type_valid =========
[17:57:08] [PASSED] Unknown
[17:57:08] [PASSED] VGA
[17:57:08] [PASSED] DVI-I
[17:57:08] [PASSED] DVI-D
[17:57:08] [PASSED] DVI-A
[17:57:08] [PASSED] Composite
[17:57:08] [PASSED] SVIDEO
[17:57:08] [PASSED] LVDS
[17:57:08] [PASSED] Component
[17:57:08] [PASSED] DIN
[17:57:08] [PASSED] DP
[17:57:08] [PASSED] HDMI-A
[17:57:08] [PASSED] HDMI-B
[17:57:08] [PASSED] TV
[17:57:08] [PASSED] eDP
[17:57:08] [PASSED] Virtual
[17:57:08] [PASSED] DSI
[17:57:08] [PASSED] DPI
[17:57:08] [PASSED] Writeback
[17:57:08] [PASSED] SPI
[17:57:08] [PASSED] USB
[17:57:08] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:57:08] =============== [PASSED] drmm_connector_init ===============
[17:57:08] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_init
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:57:08] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:57:08] [PASSED] Unknown
[17:57:08] [PASSED] VGA
[17:57:08] [PASSED] DVI-I
[17:57:08] [PASSED] DVI-D
[17:57:08] [PASSED] DVI-A
[17:57:08] [PASSED] Composite
[17:57:08] [PASSED] SVIDEO
[17:57:08] [PASSED] LVDS
[17:57:08] [PASSED] Component
[17:57:08] [PASSED] DIN
[17:57:08] [PASSED] DP
[17:57:08] [PASSED] HDMI-A
[17:57:08] [PASSED] HDMI-B
[17:57:08] [PASSED] TV
[17:57:08] [PASSED] eDP
[17:57:08] [PASSED] Virtual
[17:57:08] [PASSED] DSI
[17:57:08] [PASSED] DPI
[17:57:08] [PASSED] Writeback
[17:57:08] [PASSED] SPI
[17:57:08] [PASSED] USB
[17:57:08] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:57:08] ======== drm_test_drm_connector_dynamic_init_name =========
[17:57:08] [PASSED] Unknown
[17:57:08] [PASSED] VGA
[17:57:08] [PASSED] DVI-I
[17:57:08] [PASSED] DVI-D
[17:57:08] [PASSED] DVI-A
[17:57:08] [PASSED] Composite
[17:57:08] [PASSED] SVIDEO
[17:57:08] [PASSED] LVDS
[17:57:08] [PASSED] Component
[17:57:08] [PASSED] DIN
[17:57:08] [PASSED] DP
[17:57:08] [PASSED] HDMI-A
[17:57:08] [PASSED] HDMI-B
[17:57:08] [PASSED] TV
[17:57:08] [PASSED] eDP
[17:57:08] [PASSED] Virtual
[17:57:08] [PASSED] DSI
[17:57:08] [PASSED] DPI
[17:57:08] [PASSED] Writeback
[17:57:08] [PASSED] SPI
[17:57:08] [PASSED] USB
[17:57:08] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:57:08] =========== [PASSED] drm_connector_dynamic_init ============
[17:57:08] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:57:08] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:57:08] ======= drm_connector_dynamic_register (7 subtests) ========
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:57:08] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:57:08] ========= [PASSED] drm_connector_dynamic_register ==========
[17:57:08] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:57:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:57:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:57:08] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:57:08] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:57:08] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:57:08] [PASSED] NTSC
[17:57:08] [PASSED] NTSC-443
[17:57:08] [PASSED] NTSC-J
[17:57:08] [PASSED] PAL
[17:57:08] [PASSED] PAL-M
[17:57:08] [PASSED] PAL-N
[17:57:08] [PASSED] SECAM
[17:57:08] [PASSED] Mono
[17:57:08] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:57:08] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:57:08] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:57:08] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:57:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:57:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:57:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:57:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:57:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:57:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:57:08] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:57:08] [PASSED] VIC 96
[17:57:08] [PASSED] VIC 97
[17:57:08] [PASSED] VIC 101
[17:57:08] [PASSED] VIC 102
[17:57:08] [PASSED] VIC 106
[17:57:08] [PASSED] VIC 107
[17:57:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:57:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:57:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:57:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:57:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:57:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:57:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:57:08] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:57:08] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:57:08] [PASSED] Automatic
[17:57:08] [PASSED] Full
[17:57:08] [PASSED] Limited 16:235
[17:57:08] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:57:08] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:57:08] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:57:08] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:57:08] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:57:08] [PASSED] RGB
[17:57:08] [PASSED] YUV 4:2:0
[17:57:08] [PASSED] YUV 4:2:2
[17:57:08] [PASSED] YUV 4:4:4
[17:57:08] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:57:08] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:57:08] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:57:08] ============= drm_damage_helper (21 subtests) ==============
[17:57:08] [PASSED] drm_test_damage_iter_no_damage
[17:57:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:57:08] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:57:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:57:08] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:57:08] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:57:08] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:57:08] [PASSED] drm_test_damage_iter_simple_damage
[17:57:08] [PASSED] drm_test_damage_iter_single_damage
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:57:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:57:08] [PASSED] drm_test_damage_iter_damage
[17:57:08] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:57:08] [PASSED] drm_test_damage_iter_damage_one_outside
[17:57:08] [PASSED] drm_test_damage_iter_damage_src_moved
[17:57:08] [PASSED] drm_test_damage_iter_damage_not_visible
[17:57:08] ================ [PASSED] drm_damage_helper ================
[17:57:08] ============== drm_dp_mst_helper (3 subtests) ==============
[17:57:08] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:57:08] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:57:08] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:57:08] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:57:08] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:57:08] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:57:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:57:08] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:57:08] [PASSED] Link rate 2000000 lane count 4
[17:57:08] [PASSED] Link rate 2000000 lane count 2
[17:57:08] [PASSED] Link rate 2000000 lane count 1
[17:57:08] [PASSED] Link rate 1350000 lane count 4
[17:57:08] [PASSED] Link rate 1350000 lane count 2
[17:57:08] [PASSED] Link rate 1350000 lane count 1
[17:57:08] [PASSED] Link rate 1000000 lane count 4
[17:57:08] [PASSED] Link rate 1000000 lane count 2
[17:57:08] [PASSED] Link rate 1000000 lane count 1
[17:57:08] [PASSED] Link rate 810000 lane count 4
[17:57:08] [PASSED] Link rate 810000 lane count 2
[17:57:08] [PASSED] Link rate 810000 lane count 1
[17:57:08] [PASSED] Link rate 540000 lane count 4
[17:57:08] [PASSED] Link rate 540000 lane count 2
[17:57:08] [PASSED] Link rate 540000 lane count 1
[17:57:08] [PASSED] Link rate 270000 lane count 4
[17:57:08] [PASSED] Link rate 270000 lane count 2
[17:57:08] [PASSED] Link rate 270000 lane count 1
[17:57:08] [PASSED] Link rate 162000 lane count 4
[17:57:08] [PASSED] Link rate 162000 lane count 2
[17:57:08] [PASSED] Link rate 162000 lane count 1
[17:57:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:57:08] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:57:08] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:57:08] [PASSED] DP_POWER_UP_PHY with port number
[17:57:08] [PASSED] DP_POWER_DOWN_PHY with port number
[17:57:08] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:57:08] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:57:08] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:57:08] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:57:08] [PASSED] DP_QUERY_PAYLOAD with port number
[17:57:08] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:57:08] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:57:08] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:57:08] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:57:08] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:57:08] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:57:08] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:57:08] [PASSED] DP_REMOTE_I2C_READ with port number
[17:57:08] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:57:08] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:57:08] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:57:08] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:57:08] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:57:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:57:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:57:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:57:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:57:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:57:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:57:08] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:57:08] ================ [PASSED] drm_dp_mst_helper ================
[17:57:08] ================== drm_exec (7 subtests) ===================
[17:57:08] [PASSED] sanitycheck
[17:57:08] [PASSED] test_lock
[17:57:08] [PASSED] test_lock_unlock
[17:57:08] [PASSED] test_duplicates
[17:57:08] [PASSED] test_prepare
[17:57:08] [PASSED] test_prepare_array
[17:57:08] [PASSED] test_multiple_loops
[17:57:08] ==================== [PASSED] drm_exec =====================
[17:57:08] =========== drm_format_helper_test (17 subtests) ===========
[17:57:08] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:57:08] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:57:08] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:57:08] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:57:08] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:57:08] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:57:08] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:57:08] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:57:08] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:57:08] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:57:08] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:57:08] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:57:08] ==================== drm_test_fb_swab =====================
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ================ [PASSED] drm_test_fb_swab =================
[17:57:08] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:57:08] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:57:08] [PASSED] single_pixel_source_buffer
[17:57:08] [PASSED] single_pixel_clip_rectangle
[17:57:08] [PASSED] well_known_colors
[17:57:08] [PASSED] destination_pitch
[17:57:08] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:57:08] ================= drm_test_fb_clip_offset =================
[17:57:08] [PASSED] pass through
[17:57:08] [PASSED] horizontal offset
[17:57:08] [PASSED] vertical offset
[17:57:08] [PASSED] horizontal and vertical offset
[17:57:08] [PASSED] horizontal offset (custom pitch)
[17:57:08] [PASSED] vertical offset (custom pitch)
[17:57:08] [PASSED] horizontal and vertical offset (custom pitch)
[17:57:08] ============= [PASSED] drm_test_fb_clip_offset =============
[17:57:08] =================== drm_test_fb_memcpy ====================
[17:57:08] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:57:08] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:57:08] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:57:08] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:57:08] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:57:08] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:57:08] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:57:08] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:57:08] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:57:08] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:57:08] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:57:08] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:57:08] =============== [PASSED] drm_test_fb_memcpy ================
[17:57:08] ============= [PASSED] drm_format_helper_test ==============
[17:57:08] ================= drm_format (18 subtests) =================
[17:57:08] [PASSED] drm_test_format_block_width_invalid
[17:57:08] [PASSED] drm_test_format_block_width_one_plane
[17:57:08] [PASSED] drm_test_format_block_width_two_plane
[17:57:08] [PASSED] drm_test_format_block_width_three_plane
[17:57:08] [PASSED] drm_test_format_block_width_tiled
[17:57:08] [PASSED] drm_test_format_block_height_invalid
[17:57:08] [PASSED] drm_test_format_block_height_one_plane
[17:57:08] [PASSED] drm_test_format_block_height_two_plane
[17:57:08] [PASSED] drm_test_format_block_height_three_plane
[17:57:08] [PASSED] drm_test_format_block_height_tiled
[17:57:08] [PASSED] drm_test_format_min_pitch_invalid
[17:57:08] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:57:08] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:57:08] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:57:08] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:57:08] [PASSED] drm_test_format_min_pitch_two_plane
[17:57:08] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:57:08] [PASSED] drm_test_format_min_pitch_tiled
[17:57:08] =================== [PASSED] drm_format ====================
[17:57:08] ============== drm_framebuffer (10 subtests) ===============
[17:57:08] ========== drm_test_framebuffer_check_src_coords ==========
[17:57:08] [PASSED] Success: source fits into fb
[17:57:08] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:57:08] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:57:08] [PASSED] Fail: overflowing fb with source width
[17:57:08] [PASSED] Fail: overflowing fb with source height
[17:57:08] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:57:08] [PASSED] drm_test_framebuffer_cleanup
[17:57:08] =============== drm_test_framebuffer_create ===============
[17:57:08] [PASSED] ABGR8888 normal sizes
[17:57:08] [PASSED] ABGR8888 max sizes
[17:57:08] [PASSED] ABGR8888 pitch greater than min required
[17:57:08] [PASSED] ABGR8888 pitch less than min required
[17:57:08] [PASSED] ABGR8888 Invalid width
[17:57:08] [PASSED] ABGR8888 Invalid buffer handle
[17:57:08] [PASSED] No pixel format
[17:57:08] [PASSED] ABGR8888 Width 0
[17:57:08] [PASSED] ABGR8888 Height 0
[17:57:08] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:57:08] [PASSED] ABGR8888 Large buffer offset
[17:57:08] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:57:08] [PASSED] ABGR8888 Invalid flag
[17:57:08] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:57:08] [PASSED] ABGR8888 Valid buffer modifier
[17:57:08] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:57:08] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] NV12 Normal sizes
[17:57:08] [PASSED] NV12 Max sizes
[17:57:08] [PASSED] NV12 Invalid pitch
[17:57:08] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:57:08] [PASSED] NV12 different modifier per-plane
[17:57:08] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:57:08] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] NV12 Modifier for inexistent plane
[17:57:08] [PASSED] NV12 Handle for inexistent plane
[17:57:08] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:57:08] [PASSED] YVU420 Normal sizes
[17:57:08] [PASSED] YVU420 Max sizes
[17:57:08] [PASSED] YVU420 Invalid pitch
[17:57:08] [PASSED] YVU420 Different pitches
[17:57:08] [PASSED] YVU420 Different buffer offsets/pitches
[17:57:08] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:57:08] [PASSED] YVU420 Valid modifier
[17:57:08] [PASSED] YVU420 Different modifiers per plane
[17:57:08] [PASSED] YVU420 Modifier for inexistent plane
[17:57:08] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:57:08] [PASSED] X0L2 Normal sizes
[17:57:08] [PASSED] X0L2 Max sizes
[17:57:08] [PASSED] X0L2 Invalid pitch
[17:57:08] [PASSED] X0L2 Pitch greater than minimum required
[17:57:08] [PASSED] X0L2 Handle for inexistent plane
[17:57:08] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:57:08] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:57:08] [PASSED] X0L2 Valid modifier
[17:57:08] [PASSED] X0L2 Modifier for inexistent plane
[17:57:08] =========== [PASSED] drm_test_framebuffer_create ===========
[17:57:08] [PASSED] drm_test_framebuffer_free
[17:57:08] [PASSED] drm_test_framebuffer_init
[17:57:08] [PASSED] drm_test_framebuffer_init_bad_format
[17:57:08] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:57:08] [PASSED] drm_test_framebuffer_lookup
[17:57:08] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:57:08] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:57:08] ================= [PASSED] drm_framebuffer =================
[17:57:08] ================ drm_gem_shmem (8 subtests) ================
[17:57:08] [PASSED] drm_gem_shmem_test_obj_create
[17:57:08] [PASSED] drm_gem_shmem_test_obj_create_private
[17:57:08] [PASSED] drm_gem_shmem_test_pin_pages
[17:57:08] [PASSED] drm_gem_shmem_test_vmap
[17:57:08] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:57:08] [PASSED] drm_gem_shmem_test_get_sg_table
[17:57:08] [PASSED] drm_gem_shmem_test_madvise
[17:57:08] [PASSED] drm_gem_shmem_test_purge
[17:57:08] ================== [PASSED] drm_gem_shmem ==================
[17:57:08] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:57:08] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:57:08] [PASSED] Automatic
[17:57:08] [PASSED] Full
[17:57:08] [PASSED] Limited 16:235
[17:57:08] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:57:08] [PASSED] drm_test_check_disable_connector
[17:57:08] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:57:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:57:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:57:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:57:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:57:08] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:57:08] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:57:08] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:57:08] [PASSED] drm_test_check_output_bpc_dvi
[17:57:08] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:57:08] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:57:08] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:57:08] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:57:08] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:57:08] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:57:08] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:57:08] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:57:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:57:08] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:57:08] [PASSED] drm_test_check_broadcast_rgb_value
[17:57:08] [PASSED] drm_test_check_bpc_8_value
[17:57:08] [PASSED] drm_test_check_bpc_10_value
[17:57:08] [PASSED] drm_test_check_bpc_12_value
[17:57:08] [PASSED] drm_test_check_format_value
[17:57:08] [PASSED] drm_test_check_tmds_char_value
[17:57:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:57:08] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:57:08] [PASSED] drm_test_check_mode_valid
[17:57:08] [PASSED] drm_test_check_mode_valid_reject
[17:57:08] [PASSED] drm_test_check_mode_valid_reject_rate
[17:57:08] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:57:08] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:57:08] ================= drm_managed (2 subtests) =================
[17:57:08] [PASSED] drm_test_managed_release_action
[17:57:08] [PASSED] drm_test_managed_run_action
[17:57:08] =================== [PASSED] drm_managed ===================
[17:57:08] =================== drm_mm (6 subtests) ====================
[17:57:08] [PASSED] drm_test_mm_init
[17:57:08] [PASSED] drm_test_mm_debug
[17:57:08] [PASSED] drm_test_mm_align32
[17:57:08] [PASSED] drm_test_mm_align64
[17:57:08] [PASSED] drm_test_mm_lowest
[17:57:08] [PASSED] drm_test_mm_highest
[17:57:08] ===================== [PASSED] drm_mm ======================
[17:57:08] ============= drm_modes_analog_tv (5 subtests) =============
[17:57:08] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:57:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:57:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:57:08] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:57:08] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:57:08] =============== [PASSED] drm_modes_analog_tv ===============
[17:57:08] ============== drm_plane_helper (2 subtests) ===============
[17:57:08] =============== drm_test_check_plane_state ================
[17:57:08] [PASSED] clipping_simple
[17:57:08] [PASSED] clipping_rotate_reflect
[17:57:08] [PASSED] positioning_simple
[17:57:08] [PASSED] upscaling
[17:57:08] [PASSED] downscaling
[17:57:08] [PASSED] rounding1
[17:57:08] [PASSED] rounding2
[17:57:08] [PASSED] rounding3
[17:57:08] [PASSED] rounding4
[17:57:08] =========== [PASSED] drm_test_check_plane_state ============
[17:57:08] =========== drm_test_check_invalid_plane_state ============
[17:57:08] [PASSED] positioning_invalid
[17:57:08] [PASSED] upscaling_invalid
[17:57:08] [PASSED] downscaling_invalid
[17:57:08] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:57:08] ================ [PASSED] drm_plane_helper =================
[17:57:08] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:57:08] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:57:08] [PASSED] None
[17:57:08] [PASSED] PAL
[17:57:08] [PASSED] NTSC
[17:57:08] [PASSED] Both, NTSC Default
[17:57:08] [PASSED] Both, PAL Default
[17:57:08] [PASSED] Both, NTSC Default, with PAL on command-line
[17:57:08] [PASSED] Both, PAL Default, with NTSC on command-line
[17:57:08] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:57:08] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:57:08] ================== drm_rect (9 subtests) ===================
[17:57:08] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:57:08] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:57:08] [PASSED] drm_test_rect_clip_scaled_clipped
[17:57:08] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:57:08] ================= drm_test_rect_intersect =================
[17:57:08] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:57:08] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:57:08] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:57:08] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:57:08] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:57:08] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:57:08] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:57:08] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:57:08] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:57:08] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:57:08] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:57:08] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:57:08] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:57:08] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:57:08] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:57:08] ============= [PASSED] drm_test_rect_intersect =============
[17:57:08] ================ drm_test_rect_calc_hscale ================
[17:57:08] [PASSED] normal use
[17:57:08] [PASSED] out of max range
[17:57:08] [PASSED] out of min range
[17:57:08] [PASSED] zero dst
[17:57:08] [PASSED] negative src
[17:57:08] [PASSED] negative dst
[17:57:08] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:57:08] ================ drm_test_rect_calc_vscale ================
[17:57:08] [PASSED] normal use
[17:57:08] [PASSED] out of max range
[17:57:08] [PASSED] out of min range
[17:57:08] [PASSED] zero dst
[17:57:08] [PASSED] negative src
[17:57:08] [PASSED] negative dst
[17:57:08] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:57:08] ================== drm_test_rect_rotate ===================
[17:57:08] [PASSED] reflect-x
[17:57:08] [PASSED] reflect-y
[17:57:08] [PASSED] rotate-0
[17:57:08] [PASSED] rotate-90
[17:57:08] [PASSED] rotate-180
[17:57:08] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[17:57:08] ============== [PASSED] drm_test_rect_rotate ===============
[17:57:08] ================ drm_test_rect_rotate_inv =================
[17:57:08] [PASSED] reflect-x
[17:57:08] [PASSED] reflect-y
[17:57:08] [PASSED] rotate-0
[17:57:08] [PASSED] rotate-90
[17:57:08] [PASSED] rotate-180
[17:57:08] [PASSED] rotate-270
[17:57:08] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:57:08] ==================== [PASSED] drm_rect =====================
[17:57:08] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:57:08] ============ drm_test_sysfb_build_fourcc_list =============
[17:57:08] [PASSED] no native formats
[17:57:08] [PASSED] XRGB8888 as native format
[17:57:08] [PASSED] remove duplicates
[17:57:08] [PASSED] convert alpha formats
[17:57:08] [PASSED] random formats
[17:57:08] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:57:08] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:57:08] ============================================================
[17:57:08] Testing complete. Ran 616 tests: passed: 616
[17:57:08] Elapsed time: 24.958s total, 1.752s configuring, 22.987s building, 0.190s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:57:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:57:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:57:18] Starting KUnit Kernel (1/1)...
[17:57:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:57:18] ================= ttm_device (5 subtests) ==================
[17:57:18] [PASSED] ttm_device_init_basic
[17:57:18] [PASSED] ttm_device_init_multiple
[17:57:18] [PASSED] ttm_device_fini_basic
[17:57:18] [PASSED] ttm_device_init_no_vma_man
[17:57:18] ================== ttm_device_init_pools ==================
[17:57:18] [PASSED] No DMA allocations, no DMA32 required
[17:57:18] [PASSED] DMA allocations, DMA32 required
[17:57:18] [PASSED] No DMA allocations, DMA32 required
[17:57:18] [PASSED] DMA allocations, no DMA32 required
[17:57:18] ============== [PASSED] ttm_device_init_pools ==============
[17:57:18] =================== [PASSED] ttm_device ====================
[17:57:18] ================== ttm_pool (8 subtests) ===================
[17:57:18] ================== ttm_pool_alloc_basic ===================
[17:57:18] [PASSED] One page
[17:57:18] [PASSED] More than one page
[17:57:18] [PASSED] Above the allocation limit
[17:57:18] [PASSED] One page, with coherent DMA mappings enabled
[17:57:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:57:18] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:57:18] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:57:18] [PASSED] One page
[17:57:18] [PASSED] More than one page
[17:57:18] [PASSED] Above the allocation limit
[17:57:18] [PASSED] One page, with coherent DMA mappings enabled
[17:57:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:57:18] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:57:18] [PASSED] ttm_pool_alloc_order_caching_match
[17:57:18] [PASSED] ttm_pool_alloc_caching_mismatch
[17:57:18] [PASSED] ttm_pool_alloc_order_mismatch
[17:57:18] [PASSED] ttm_pool_free_dma_alloc
[17:57:18] [PASSED] ttm_pool_free_no_dma_alloc
[17:57:18] [PASSED] ttm_pool_fini_basic
[17:57:18] ==================== [PASSED] ttm_pool =====================
[17:57:18] ================ ttm_resource (8 subtests) =================
[17:57:18] ================= ttm_resource_init_basic =================
[17:57:18] [PASSED] Init resource in TTM_PL_SYSTEM
[17:57:18] [PASSED] Init resource in TTM_PL_VRAM
[17:57:18] [PASSED] Init resource in a private placement
[17:57:18] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:57:18] ============= [PASSED] ttm_resource_init_basic =============
[17:57:18] [PASSED] ttm_resource_init_pinned
[17:57:18] [PASSED] ttm_resource_fini_basic
[17:57:18] [PASSED] ttm_resource_manager_init_basic
[17:57:18] [PASSED] ttm_resource_manager_usage_basic
[17:57:18] [PASSED] ttm_resource_manager_set_used_basic
[17:57:18] [PASSED] ttm_sys_man_alloc_basic
[17:57:18] [PASSED] ttm_sys_man_free_basic
[17:57:18] ================== [PASSED] ttm_resource ===================
[17:57:18] =================== ttm_tt (15 subtests) ===================
[17:57:18] ==================== ttm_tt_init_basic ====================
[17:57:18] [PASSED] Page-aligned size
[17:57:18] [PASSED] Extra pages requested
[17:57:18] ================ [PASSED] ttm_tt_init_basic ================
[17:57:18] [PASSED] ttm_tt_init_misaligned
[17:57:18] [PASSED] ttm_tt_fini_basic
[17:57:18] [PASSED] ttm_tt_fini_sg
[17:57:18] [PASSED] ttm_tt_fini_shmem
[17:57:18] [PASSED] ttm_tt_create_basic
[17:57:18] [PASSED] ttm_tt_create_invalid_bo_type
[17:57:18] [PASSED] ttm_tt_create_ttm_exists
[17:57:18] [PASSED] ttm_tt_create_failed
[17:57:18] [PASSED] ttm_tt_destroy_basic
[17:57:18] [PASSED] ttm_tt_populate_null_ttm
[17:57:18] [PASSED] ttm_tt_populate_populated_ttm
[17:57:18] [PASSED] ttm_tt_unpopulate_basic
[17:57:18] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:57:18] [PASSED] ttm_tt_swapin_basic
[17:57:18] ===================== [PASSED] ttm_tt ======================
[17:57:18] =================== ttm_bo (14 subtests) ===================
[17:57:18] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:57:18] [PASSED] Cannot be interrupted and sleeps
[17:57:18] [PASSED] Cannot be interrupted, locks straight away
[17:57:18] [PASSED] Can be interrupted, sleeps
[17:57:18] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:57:18] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:57:18] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:57:18] [PASSED] ttm_bo_reserve_double_resv
[17:57:18] [PASSED] ttm_bo_reserve_interrupted
[17:57:18] [PASSED] ttm_bo_reserve_deadlock
[17:57:18] [PASSED] ttm_bo_unreserve_basic
[17:57:18] [PASSED] ttm_bo_unreserve_pinned
[17:57:18] [PASSED] ttm_bo_unreserve_bulk
[17:57:18] [PASSED] ttm_bo_put_basic
[17:57:18] [PASSED] ttm_bo_put_shared_resv
[17:57:18] [PASSED] ttm_bo_pin_basic
[17:57:18] [PASSED] ttm_bo_pin_unpin_resource
[17:57:18] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:57:18] ===================== [PASSED] ttm_bo ======================
[17:57:18] ============== ttm_bo_validate (21 subtests) ===============
[17:57:18] ============== ttm_bo_init_reserved_sys_man ===============
[17:57:18] [PASSED] Buffer object for userspace
[17:57:18] [PASSED] Kernel buffer object
[17:57:18] [PASSED] Shared buffer object
[17:57:18] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:57:18] ============== ttm_bo_init_reserved_mock_man ==============
[17:57:18] [PASSED] Buffer object for userspace
[17:57:18] [PASSED] Kernel buffer object
[17:57:18] [PASSED] Shared buffer object
[17:57:18] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:57:18] [PASSED] ttm_bo_init_reserved_resv
[17:57:18] ================== ttm_bo_validate_basic ==================
[17:57:18] [PASSED] Buffer object for userspace
[17:57:18] [PASSED] Kernel buffer object
[17:57:18] [PASSED] Shared buffer object
[17:57:18] ============== [PASSED] ttm_bo_validate_basic ==============
[17:57:18] [PASSED] ttm_bo_validate_invalid_placement
[17:57:18] ============= ttm_bo_validate_same_placement ==============
[17:57:18] [PASSED] System manager
[17:57:18] [PASSED] VRAM manager
[17:57:18] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:57:18] [PASSED] ttm_bo_validate_failed_alloc
[17:57:18] [PASSED] ttm_bo_validate_pinned
[17:57:18] [PASSED] ttm_bo_validate_busy_placement
[17:57:18] ================ ttm_bo_validate_multihop =================
[17:57:18] [PASSED] Buffer object for userspace
[17:57:18] [PASSED] Kernel buffer object
[17:57:18] [PASSED] Shared buffer object
[17:57:18] ============ [PASSED] ttm_bo_validate_multihop =============
[17:57:18] ========== ttm_bo_validate_no_placement_signaled ==========
[17:57:18] [PASSED] Buffer object in system domain, no page vector
[17:57:18] [PASSED] Buffer object in system domain with an existing page vector
[17:57:18] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:57:18] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:57:18] [PASSED] Buffer object for userspace
[17:57:18] [PASSED] Kernel buffer object
[17:57:18] [PASSED] Shared buffer object
[17:57:18] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:57:18] [PASSED] ttm_bo_validate_move_fence_signaled
[17:57:18] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:57:18] [PASSED] Waits for GPU
[17:57:18] [PASSED] Tries to lock straight away
[17:57:18] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:57:18] [PASSED] ttm_bo_validate_happy_evict
[17:57:18] [PASSED] ttm_bo_validate_all_pinned_evict
[17:57:18] [PASSED] ttm_bo_validate_allowed_only_evict
[17:57:18] [PASSED] ttm_bo_validate_deleted_evict
[17:57:18] [PASSED] ttm_bo_validate_busy_domain_evict
[17:57:18] [PASSED] ttm_bo_validate_evict_gutting
[17:57:18] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:57:18] ================= [PASSED] ttm_bo_validate =================
[17:57:18] ============================================================
[17:57:18] Testing complete. Ran 101 tests: passed: 101
[17:57:18] Elapsed time: 9.953s total, 1.682s configuring, 8.004s building, 0.233s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
` (3 preceding siblings ...)
2025-08-26 17:57 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-26 18:50 ` Patchwork
2025-08-27 4:01 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-27 4:25 ` [PATCH 0/2] " Matthew Brost
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-26 18:50 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1199 bytes --]
== Series Details ==
Series: drm/xe/xe_vm: Add error injection support to lock and prep
URL : https://patchwork.freedesktop.org/series/153526/
State : success
== Summary ==
CI Bug Log - changes from xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907_BAT -> xe-pw-153526v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-153526v1_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* Linux: xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907 -> xe-pw-153526v1
IGT_8511: 8511
xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907: 4b94f8fef771cb0b1d0131675e2d794ef6464907
xe-pw-153526v1: 153526v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/index.html
[-- Attachment #2: Type: text/html, Size: 1676 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
` (4 preceding siblings ...)
2025-08-26 18:50 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-27 4:01 ` Patchwork
2025-08-27 4:25 ` [PATCH 0/2] " Matthew Brost
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-27 4:01 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 74256 bytes --]
== Series Details ==
Series: drm/xe/xe_vm: Add error injection support to lock and prep
URL : https://patchwork.freedesktop.org/series/153526/
State : failure
== Summary ==
CI Bug Log - changes from xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907_FULL -> xe-pw-153526v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153526v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153526v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-153526v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_threads@threads-cm-fd-rebind:
- shard-adlp: [PASS][1] -> [FAIL][2] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-3/igt@xe_exec_threads@threads-cm-fd-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-8/igt@xe_exec_threads@threads-cm-fd-rebind.html
* igt@xe_vm@bind-array-conflict-error-inject:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-8/igt@xe_vm@bind-array-conflict-error-inject.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@xe_vm@bind-array-conflict-error-inject.html
- shard-lnl: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-lnl-5/igt@xe_vm@bind-array-conflict-error-inject.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-5/igt@xe_vm@bind-array-conflict-error-inject.html
Known issues
------------
Here are the changes found in xe-pw-153526v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@basic:
- shard-dg2-set2: [PASS][7] -> [FAIL][8] ([Intel XE#4208])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@core_getversion@basic.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@core_getversion@basic.html
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#664])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#316]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [DMESG-FAIL][15] ([Intel XE#4543])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#2191]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1512])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2191])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +125 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#787]) +20 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2669]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +9 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#2907])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3113])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#4417] / [Intel XE#455])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#4417]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_chamelium_color@gamma.html
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#306])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#373]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-2/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-432/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#3304])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-464/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@srm:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2321]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#4208] / [i915#2575]) +30 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#308])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#4208] / [i915#2575]) +14 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_cursor_edge_walk@128x128-left-edge.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#309]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#4354])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#4354])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2244]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#4422])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_feature_discovery@chamelium:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#701])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) +8 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#310]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#301])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][62] ([Intel XE#2049] / [Intel XE#2597])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-7/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1397]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1401]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#4208]) +138 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y:
- shard-adlp: [PASS][68] -> [DMESG-FAIL][69] ([Intel XE#4543]) +1 other test dmesg-fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#352])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2311])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#651]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#656]) +26 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#651]) +11 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#651]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#656]) +16 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#658])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2313])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#653]) +9 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#653]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1470])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2925])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2927])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#2927])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_lease@lease-unleased-connector:
- shard-adlp: [PASS][88] -> [ABORT][89] ([Intel XE#2953]) +1 other test abort
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-8/igt@kms_lease@lease-unleased-connector.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-4/igt@kms_lease@lease-unleased-connector.html
* igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-8/igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-1.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-4/igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#599]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4596])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#5020])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#5020])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#870])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#870])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#736])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#734])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#836])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-adlp: [PASS][101] -> [ABORT][102] ([Intel XE#5545])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-3/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1128] / [Intel XE#1406])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1406] / [Intel XE#4208]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1406]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [FAIL][115] ([Intel XE#4689])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][116] -> [FAIL][117] ([Intel XE#2883]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-7/igt@kms_setmode@basic.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-3/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#455]) +8 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1435])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#4459]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1499])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_ccs@block-multicopy-compressed:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@xe_ccs@block-multicopy-compressed.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4837]) +8 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#4837]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@single-step-one:
- shard-adlp: NOTRUN -> [SKIP][126] ([Intel XE#4837] / [Intel XE#5565]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_eudebug_online@single-step-one.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4837])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#688]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#5563] / [Intel XE#688])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@many-execqueues-userptr-invalidate-race:
- shard-adlp: [PASS][131] -> [DMESG-FAIL][132] ([Intel XE#3876]) +2 other tests dmesg-fail
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-3/igt@xe_exec_basic@many-execqueues-userptr-invalidate-race.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-8/igt@xe_exec_basic@many-execqueues-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1392]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1392]) +5 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@no-exec-basic-defer-bind:
- shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#4208]) +48 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_exec_basic@no-exec-basic-defer-bind.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_exec_basic@no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#288] / [Intel XE#5561]) +12 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#288]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [PASS][141] -> [DMESG-WARN][142] ([Intel XE#3876])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-3/igt@xe_exec_reset@parallel-gt-reset.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-mmap-free-race:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#4915]) +118 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_exec_system_allocator@many-mmap-free-race.html
* igt@xe_exec_system_allocator@once-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#4943]) +19 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@xe_exec_system_allocator@once-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#4915]) +49 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#4943]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge-nomemset.html
* igt@xe_oa@buffer-size:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#5103])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_oa@buffer-size.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3573]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2248])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#3573]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#977])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1948])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#584])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-adlp: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#569])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-8/igt@xe_pm@s3-vm-bind-prefetch.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-8/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pmu@engine-activity-most-load@engine-drm_xe_engine_class_render0:
- shard-adlp: [PASS][159] -> [TIMEOUT][160] ([Intel XE#3876]) +1 other test timeout
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-3/igt@xe_pmu@engine-activity-most-load@engine-drm_xe_engine_class_render0.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-8/igt@xe_pmu@engine-activity-most-load@engine-drm_xe_engine_class_render0.html
* igt@xe_query@multigpu-query-oa-units:
- shard-adlp: NOTRUN -> [SKIP][161] ([Intel XE#944]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-2/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#944]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-8/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#4130])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#3342])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0:
- shard-adlp: [DMESG-WARN][165] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][166] +5 other tests pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][167] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][169] ([Intel XE#3862]) -> [PASS][170] +1 other test pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][171] ([Intel XE#2291]) -> [PASS][172] +5 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][173] ([Intel XE#4294]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][175] ([Intel XE#2316]) -> [PASS][176] +2 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][177] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [INCOMPLETE][179] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-7/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-7/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x:
- shard-adlp: [DMESG-FAIL][181] ([Intel XE#4543]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][183] ([Intel XE#1503]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1392]) -> [PASS][186] +3 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [DMESG-WARN][187] ([Intel XE#3876]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_threads@threads-cm-fd-rebind:
- shard-bmg: [FAIL][189] -> [PASS][190] +2 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-8/igt@xe_exec_threads@threads-cm-fd-rebind.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@xe_exec_threads@threads-cm-fd-rebind.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1124]) -> [SKIP][192] ([Intel XE#2351] / [Intel XE#4208])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][193] ([Intel XE#1124]) -> [SKIP][194] ([Intel XE#4208])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][195] ([Intel XE#2191]) -> [SKIP][196] ([Intel XE#4208] / [i915#2575])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][197] ([Intel XE#367]) -> [SKIP][198] ([Intel XE#4208] / [i915#2575])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][199] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][200] ([Intel XE#4208]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][201] ([Intel XE#2907]) -> [SKIP][202] ([Intel XE#4208])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][203] ([Intel XE#3442]) -> [SKIP][204] ([Intel XE#4208])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][205] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][206] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][207] ([Intel XE#306]) -> [SKIP][208] ([Intel XE#4208] / [i915#2575])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2-set2: [SKIP][209] ([Intel XE#373]) -> [SKIP][210] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_chamelium_edid@vga-edid-read.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][211] ([Intel XE#2341]) -> [FAIL][212] ([Intel XE#1178])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_content_protection@atomic.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [FAIL][213] ([Intel XE#1178]) -> [SKIP][214] ([Intel XE#4208] / [i915#2575])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_content_protection@srm.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: [SKIP][215] ([Intel XE#455]) -> [SKIP][216] ([Intel XE#4208] / [i915#2575]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_cursor_crc@cursor-random-max-size.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: [SKIP][217] ([Intel XE#308]) -> [SKIP][218] ([Intel XE#4208] / [i915#2575])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][219] ([Intel XE#455]) -> [SKIP][220] ([Intel XE#2351] / [Intel XE#4208])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_dsc@dsc-basic.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][221] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][222] ([Intel XE#301])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][223] ([Intel XE#651]) -> [SKIP][224] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][225] ([Intel XE#2312]) -> [SKIP][226] ([Intel XE#2311]) +12 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-dg2-set2: [SKIP][227] ([Intel XE#651]) -> [SKIP][228] ([Intel XE#4208]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][229] ([Intel XE#2312]) -> [SKIP][230] ([Intel XE#5390]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][231] ([Intel XE#653]) -> [SKIP][232] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][233] ([Intel XE#2312]) -> [SKIP][234] ([Intel XE#2313]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2-set2: [SKIP][235] ([Intel XE#653]) -> [SKIP][236] ([Intel XE#4208]) +6 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][237] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][238] ([Intel XE#3544])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][239] ([Intel XE#2938]) -> [SKIP][240] ([Intel XE#4208])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][242] ([Intel XE#1406] / [Intel XE#4208]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1122] / [Intel XE#1406]) -> [SKIP][244] ([Intel XE#1406] / [Intel XE#4208])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][246] ([Intel XE#1406] / [Intel XE#4208]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][247] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][248] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@kms_psr@psr-cursor-plane-move.html
* igt@xe_eudebug@multigpu-basic-client-many:
- shard-dg2-set2: [SKIP][249] ([Intel XE#4837]) -> [SKIP][250] ([Intel XE#4208]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_eudebug@multigpu-basic-client-many.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_eudebug@multigpu-basic-client-many.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: [SKIP][251] ([Intel XE#288]) -> [SKIP][252] ([Intel XE#4208]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind-prefetch.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset:
- shard-dg2-set2: [SKIP][253] ([Intel XE#4915]) -> [SKIP][254] ([Intel XE#4208]) +60 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][255] ([Intel XE#255]) -> [SKIP][256] ([Intel XE#4208])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_huc_copy@huc_copy.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: [SKIP][257] ([Intel XE#3573]) -> [SKIP][258] ([Intel XE#4208]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-dg2-set2: [SKIP][259] ([Intel XE#944]) -> [SKIP][260] ([Intel XE#4208])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907/shard-dg2-436/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/shard-dg2-435/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* Linux: xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907 -> xe-pw-153526v1
IGT_8511: 8511
xe-3621-4b94f8fef771cb0b1d0131675e2d794ef6464907: 4b94f8fef771cb0b1d0131675e2d794ef6464907
xe-pw-153526v1: 153526v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153526v1/index.html
[-- Attachment #2: Type: text/html, Size: 90972 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
` (5 preceding siblings ...)
2025-08-27 4:01 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-08-27 4:25 ` Matthew Brost
6 siblings, 0 replies; 10+ messages in thread
From: Matthew Brost @ 2025-08-27 4:25 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe, saurabhg.gupta, alex.zuo, john.c.harrison
On Tue, Aug 26, 2025 at 05:50:52PM +0000, Jonathan Cavitt wrote:
> Error injection should use the error injection interface, and should be
> decoupled from CONFIG_DRM_XE_DEBUG. Remove TEST_VM_OPS_ERROR from the
> code, and add error injection support to the function
> vm_bind_ioctl_ops_lock_and_prep. This necessitates marking the function
> as noinline.
>
There was 3 revs of this series in a short period of time - I get typing
fast but if this occurs, please cancel prior rev CI runs to avoid
wasting our CI resources.
Matt
> Jonathan Cavitt (2):
> Revert "drm/xe: Add VM bind IOCTL error injection"
> drm/xe/xe_vm: Add error injection support to lock and prep
>
> drivers/gpu/drm/xe/xe_device_types.h | 12 -----------
> drivers/gpu/drm/xe/xe_pt.c | 12 -----------
> drivers/gpu/drm/xe/xe_vm.c | 31 ++++++----------------------
> drivers/gpu/drm/xe/xe_vm_types.h | 14 -------------
> 4 files changed, 6 insertions(+), 63 deletions(-)
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-26 20:57 [PATCH v3 0/3] " Jonathan Cavitt
@ 2025-08-27 10:08 ` Patchwork
0 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-27 10:08 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 99714 bytes --]
== Series Details ==
Series: drm/xe/xe_vm: Add error injection support to lock and prep
URL : https://patchwork.freedesktop.org/series/153536/
State : failure
== Summary ==
CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_FULL -> xe-pw-153536v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153536v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153536v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-153536v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_vm@bind-array-conflict-error-inject:
- shard-adlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_vm@bind-array-conflict-error-inject.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-6/igt@xe_vm@bind-array-conflict-error-inject.html
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_vm@bind-array-conflict-error-inject.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-4/igt@xe_vm@bind-array-conflict-error-inject.html
- shard-dg2-set2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_vm@bind-array-conflict-error-inject.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@xe_vm@bind-array-conflict-error-inject.html
- shard-lnl: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_vm@bind-array-conflict-error-inject.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-lnl-4/igt@xe_vm@bind-array-conflict-error-inject.html
Known issues
------------
Here are the changes found in xe-pw-153536v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@read:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#2134]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@fbdev@read.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2134])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@fbdev@write.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@fbdev@write.html
* igt@kms_addfb_basic@too-high:
- shard-bmg: [PASS][12] -> [ABORT][13] ([Intel XE#3970])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_addfb_basic@too-high.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_addfb_basic@too-high.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#4208] / [i915#2575]) +42 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [PASS][16] -> [FAIL][17] ([Intel XE#3908]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][19] ([Intel XE#4543])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][20] -> [DMESG-FAIL][21] ([Intel XE#4543]) +2 other tests dmesg-fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#316]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][23] -> [DMESG-FAIL][24] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#2191])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#367])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#787]) +20 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#2907]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#3442])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1:
- shard-lnl: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#5666]) +3 other tests dmesg-warn
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3432])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
- shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#5376]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#787]) +132 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#2705] / [Intel XE#4212])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#306])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@vga-hpd-after-hibernate:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#373]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#307]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1178])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#308])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#4208] / [i915#2575]) +57 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#4494] / [i915#3804])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#4331])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2316]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#310])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#3098]) +1 other test fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank@ac-dp2-hdmi-a3.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2316])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#4543])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-6/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#4208]) +287 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#455]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2312])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2351] / [Intel XE#4208]) +12 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#5390])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#656]) +18 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#651]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#653]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2313]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#346])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#455]) +11 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#4596])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-x.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#309]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2938])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#3309])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#1489])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@pr-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@pr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#1126])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@non-blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#5626])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_eu_stall@non-blocking-re-enable.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4837])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#4837] / [Intel XE#5565]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_evict@evict-beng-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_evict@evict-beng-small-external-cm.html
* igt@xe_evict@evict-large-external:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#261] / [Intel XE#5564])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_evict@evict-large-external.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#4208]) +90 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_balancer@twice-virtual-basic.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#1392]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-rebind.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#288] / [Intel XE#5561]) +11 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html
* igt@xe_exec_system_allocator@process-many-execqueues-free:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#4915]) +118 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_exec_system_allocator@process-many-execqueues-free.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4943]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-large-mmap-free-huge.html
* igt@xe_live_ktest@xe_bo:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#2229])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#5100])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [PASS][108] -> [FAIL][109] ([Intel XE#4208])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@reload.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_module_load@reload.html
* igt@xe_oa@non-system-wide-paranoid:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#3573]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_oa@non-system-wide-paranoid.html
* igt@xe_pm@d3cold-i2c:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#5694])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3hot-i2c:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#5742])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_pm@d3hot-i2c.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][113] -> [FAIL][114] ([Intel XE#4819]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_pmu@gt-frequency.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-432/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#4733] / [Intel XE#5594])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-4/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#944]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-8/igt@xe_query@multigpu-query-invalid-size.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-adlp: [DMESG-WARN][117] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][119] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][120] +6 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][121] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][125] ([Intel XE#2291]) -> [PASS][126] +2 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][127] ([Intel XE#4302]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][129] ([Intel XE#2316]) -> [PASS][130] +5 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][131] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-interruptible@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][133] ([Intel XE#4543]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@c-hdmi-a1.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-adlp-6/igt@kms_flip@plain-flip-interruptible@c-hdmi-a1.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][135] ([Intel XE#1503]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][137] ([Intel XE#3012]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][139] ([Intel XE#4596]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [SKIP][141] ([Intel XE#4208] / [i915#2575]) -> [PASS][142] +81 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-180.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][143] ([Intel XE#1435]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [SKIP][145] ([Intel XE#4208]) -> [PASS][146] +172 other tests pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1392]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-466/igt@xe_exec_basic@multigpu-once-null.html
* igt@xe_exec_system_allocator@evict-malloc:
- shard-bmg: [ABORT][149] ([Intel XE#3970]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_exec_system_allocator@evict-malloc.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@xe_exec_system_allocator@evict-malloc.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [SKIP][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176]) ([Intel XE#2457]) -> ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-4/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-4/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-8/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-3/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-2/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-3/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-2/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-8/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-8/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-2/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-3/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-4/igt@xe_module_load@load.html
* igt@xe_vm@bind-array-enobufs:
- shard-dg2-set2: [DMESG-FAIL][202] ([Intel XE#3876]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-432/igt@xe_vm@bind-array-enobufs.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][204] ([Intel XE#4208] / [i915#2575]) -> [SKIP][205] ([Intel XE#623])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][206] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][207] ([Intel XE#316])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][208] ([Intel XE#4208]) -> [SKIP][209] ([Intel XE#316])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][210] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][211] ([Intel XE#619])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1124]) -> [SKIP][213] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][214] ([Intel XE#4208]) -> [SKIP][215] ([Intel XE#610])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][216] ([Intel XE#4208]) -> [SKIP][217] ([Intel XE#1124]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][218] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][219] ([Intel XE#1124]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][220] ([Intel XE#1124]) -> [SKIP][221] ([Intel XE#4208]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][222] ([Intel XE#4208] / [i915#2575]) -> [SKIP][223] ([Intel XE#2191])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][224] ([Intel XE#4208] / [i915#2575]) -> [SKIP][225] ([Intel XE#367]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][226] ([Intel XE#367]) -> [SKIP][227] ([Intel XE#4208] / [i915#2575])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][228] ([Intel XE#4208]) -> [SKIP][229] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][230] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][231] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][232] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#4208]) +6 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][234] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][235] ([Intel XE#2351] / [Intel XE#4208])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][237] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][238] ([Intel XE#306]) -> [SKIP][239] ([Intel XE#4208] / [i915#2575])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][240] ([Intel XE#4208] / [i915#2575]) -> [SKIP][241] ([Intel XE#306]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_color@gamma.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: [SKIP][242] ([Intel XE#4208] / [i915#2575]) -> [SKIP][243] ([Intel XE#373]) +6 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][244] ([Intel XE#373]) -> [SKIP][245] ([Intel XE#4208] / [i915#2575]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [FAIL][246] ([Intel XE#1178]) -> [SKIP][247] ([Intel XE#4208] / [i915#2575])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_content_protection@atomic.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][248] ([Intel XE#307]) -> [SKIP][249] ([Intel XE#4208] / [i915#2575])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][250] ([Intel XE#2341]) -> [FAIL][251] ([Intel XE#1178])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][252] ([Intel XE#1178]) -> [SKIP][253] ([Intel XE#2341])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_content_protection@srm.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][254] ([Intel XE#308]) -> [SKIP][255] ([Intel XE#4208] / [i915#2575])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2-set2: [SKIP][256] ([Intel XE#4208] / [i915#2575]) -> [SKIP][257] ([Intel XE#455]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-32x32.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][258] ([Intel XE#4208] / [i915#2575]) -> [SKIP][259] ([Intel XE#323])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: [SKIP][260] ([Intel XE#4208]) -> [SKIP][261] ([Intel XE#4354])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_dp_link_training@non-uhbr-mst.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: [SKIP][262] ([Intel XE#4356]) -> [SKIP][263] ([Intel XE#4208])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][264] ([Intel XE#4208]) -> [SKIP][265] ([Intel XE#455]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: [SKIP][266] ([Intel XE#4422]) -> [SKIP][267] ([Intel XE#4208])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][268] ([Intel XE#776]) -> [SKIP][269] ([Intel XE#4208])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][270] ([Intel XE#1137]) -> [SKIP][271] ([Intel XE#4208] / [i915#2575])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][272] ([Intel XE#4208] / [i915#2575]) -> [SKIP][273] ([Intel XE#1135])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_feature_discovery@psr1.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [INCOMPLETE][274] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][275] ([Intel XE#2316])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][276] ([Intel XE#455]) -> [SKIP][277] ([Intel XE#4208])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][278] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][279] ([Intel XE#455])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][280] ([Intel XE#4208]) -> [SKIP][281] ([Intel XE#651]) +16 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][282] ([Intel XE#651]) -> [SKIP][283] ([Intel XE#4208]) +9 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][284] ([Intel XE#2311]) -> [SKIP][285] ([Intel XE#2312]) +14 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][286] ([Intel XE#2312]) -> [SKIP][287] ([Intel XE#2311]) +11 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-dg2-set2: [SKIP][288] ([Intel XE#651]) -> [SKIP][289] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][290] ([Intel XE#5390]) -> [SKIP][291] ([Intel XE#2312]) +5 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][292] ([Intel XE#2312]) -> [SKIP][293] ([Intel XE#5390]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][294] ([Intel XE#658]) -> [SKIP][295] ([Intel XE#2351] / [Intel XE#4208])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][297] ([Intel XE#651]) +10 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][298] ([Intel XE#653]) -> [SKIP][299] ([Intel XE#4208]) +9 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][300] ([Intel XE#2313]) -> [SKIP][301] ([Intel XE#2312]) +10 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][302] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][303] ([Intel XE#658])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][304] ([Intel XE#4208]) -> [SKIP][305] ([Intel XE#653]) +19 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][306] ([Intel XE#653]) -> [SKIP][307] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][309] ([Intel XE#653]) +6 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][310] ([Intel XE#2312]) -> [SKIP][311] ([Intel XE#2313]) +12 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: [SKIP][312] ([Intel XE#4208]) -> [SKIP][313] ([Intel XE#4298])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@basic-max-non-joiner.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][314] ([Intel XE#4208]) -> [SKIP][315] ([Intel XE#2925])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][316] ([Intel XE#4208]) -> [SKIP][317] ([Intel XE#2927])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][318] ([Intel XE#356]) -> [SKIP][319] ([Intel XE#4208] / [i915#2575])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][320] ([Intel XE#5021]) -> [SKIP][321] ([Intel XE#4596])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg2-set2: [SKIP][322] ([Intel XE#4208] / [i915#2575]) -> [SKIP][323] ([Intel XE#5021])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-y.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: [SKIP][324] ([Intel XE#4208] / [i915#2575]) -> [SKIP][325] ([Intel XE#5020])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][326] ([Intel XE#4208]) -> [SKIP][327] ([Intel XE#870]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][328] ([Intel XE#908]) -> [SKIP][329] ([Intel XE#2351] / [Intel XE#4208])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][330] ([Intel XE#4208]) -> [SKIP][331] ([Intel XE#908])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][332] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][333] ([Intel XE#1406] / [Intel XE#4208]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][334] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][335] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: [SKIP][336] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][337] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr@fbc-psr2-dpms.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: [SKIP][338] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][339] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr@pr-dpms.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][340] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][341] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr@psr-sprite-plane-move.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][342] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][343] ([Intel XE#1406] / [Intel XE#4208]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-onoff.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][344] ([Intel XE#3414]) -> [SKIP][345] ([Intel XE#4208] / [i915#2575])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][346] ([Intel XE#2426]) -> [FAIL][347] ([Intel XE#1729])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [FAIL][348] ([Intel XE#1729]) -> [SKIP][349] ([Intel XE#4208] / [i915#2575])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][350] ([Intel XE#1500]) -> [SKIP][351] ([Intel XE#4208] / [i915#2575])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][352] ([Intel XE#4208] / [i915#2575]) -> [SKIP][353] ([Intel XE#330])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][354] ([Intel XE#455]) -> [SKIP][355] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_vrr@flip-dpms.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@kms_vrr@flip-dpms.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][356] ([Intel XE#4208]) -> [SKIP][357] ([Intel XE#1123]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eu_stall@non-blocking-read:
- shard-dg2-set2: [SKIP][358] ([Intel XE#4208]) -> [SKIP][359] ([Intel XE#5626])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_eu_stall@non-blocking-read.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_eu_stall@non-blocking-read.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: [SKIP][360] ([Intel XE#4208]) -> [SKIP][361] ([Intel XE#4837]) +11 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eudebug_online@debugger-reopen.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][362] ([Intel XE#4837]) -> [SKIP][363] ([Intel XE#4208]) +7 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-dg2-set2: [SKIP][364] ([Intel XE#4208]) -> [SKIP][365] ([Intel XE#4518])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_eudebug_sriov@deny-eudebug.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][366] ([Intel XE#1392]) -> [SKIP][367] ([Intel XE#4208]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][368] ([Intel XE#4208]) -> [SKIP][369] ([Intel XE#288]) +22 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][370] ([Intel XE#288]) -> [SKIP][371] ([Intel XE#4208]) +11 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_exec_fault_mode@many-userptr-invalidate-imm.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@xe_exec_fault_mode@many-userptr-invalidate-imm.html
* igt@xe_exec_system_allocator@threads-many-malloc-multi-fault:
- shard-dg2-set2: [SKIP][372] ([Intel XE#4915]) -> [SKIP][373] ([Intel XE#4208]) +124 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-malloc-multi-fault.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-malloc-multi-fault.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: [SKIP][374] ([Intel XE#4208]) -> [SKIP][375] ([Intel XE#4915]) +217 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [SKIP][376] ([Intel XE#4208]) -> [ABORT][377] ([Intel XE#4917])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][378] ([Intel XE#4208]) -> [SKIP][379] ([Intel XE#3573]) +4 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: [SKIP][380] ([Intel XE#4208]) -> [SKIP][381] ([Intel XE#5103])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_oa@mmio-triggered-reports-read.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: [SKIP][382] ([Intel XE#3573]) -> [SKIP][383] ([Intel XE#4208]) +2 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][384] ([Intel XE#4208]) -> [SKIP][385] ([Intel XE#2284])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][386] ([Intel XE#4208]) -> [SKIP][387] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pxp@display-pxp-fb:
- shard-dg2-set2: [SKIP][388] ([Intel XE#4733]) -> [SKIP][389] ([Intel XE#4208]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_pxp@display-pxp-fb.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: [SKIP][390] ([Intel XE#4208]) -> [SKIP][391] ([Intel XE#4733]) +2 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][392] ([Intel XE#944]) -> [SKIP][393] ([Intel XE#4208])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: [SKIP][394] ([Intel XE#4130]) -> [SKIP][395] ([Intel XE#4208])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][396] ([Intel XE#4208]) -> [SKIP][397] ([Intel XE#3342])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: [SKIP][398] ([Intel XE#4273]) -> [SKIP][399] ([Intel XE#4208])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_sriov_flr@flr-twice.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/shard-dg2-434/igt@xe_sriov_flr@flr-twice.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5666]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5666
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153536v1
IGT_8511: 8511
xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
xe-pw-153536v1: 153536v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153536v1/index.html
[-- Attachment #2: Type: text/html, Size: 125326 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/xe_vm: Add error injection support to lock and prep
2025-08-27 20:36 [PATCH v6 0/3] " Jonathan Cavitt
@ 2025-08-27 23:49 ` Patchwork
0 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-27 23:49 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 161326 bytes --]
== Series Details ==
Series: drm/xe/xe_vm: Add error injection support to lock and prep
URL : https://patchwork.freedesktop.org/series/153588/
State : failure
== Summary ==
CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_FULL -> xe-pw-153588v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153588v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153588v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-153588v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_vm@bind-array-conflict-error-inject:
- shard-adlp: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_vm@bind-array-conflict-error-inject.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_vm@bind-array-conflict-error-inject.html
- shard-dg2-set2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_vm@bind-array-conflict-error-inject.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_vm@bind-array-conflict-error-inject.html
- shard-lnl: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_vm@bind-array-conflict-error-inject.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_vm@bind-array-conflict-error-inject.html
Known issues
------------
Here are the changes found in xe-pw-153588v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][9] ([Intel XE#911]) +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [PASS][10] -> [FAIL][11] ([Intel XE#3884]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#664])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3279])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +13 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3658])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [DMESG-FAIL][19] ([Intel XE#4543]) +1 other test dmesg-fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#316]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#607])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#610])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [PASS][25] -> [DMESG-FAIL][26] ([Intel XE#4543]) +10 other tests dmesg-fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +8 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#2191]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2191]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#367])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#367]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1512])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#2351] / [Intel XE#4208]) +15 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +13 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#787]) +53 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2907])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#3442])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3432]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#3432]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#2907]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#787]) +195 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][50] ([Intel XE#3124])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][51] ([Intel XE#1727] / [Intel XE#3113])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#4417] / [Intel XE#455])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#4417]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#373]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#373]) +10 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#306])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#306])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@kms_chamelium_color@ctm-max.html
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#306]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2252]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#373]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#1178])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2341])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@kms_content_protection@content-type-change.html
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3278])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2390])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#307]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#307])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#307])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#1178])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#1188]) +1 other test fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2321]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#308]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1424]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2320])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#308]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4208] / [i915#2575]) +54 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#309]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#309]) +8 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2291]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1508])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#3009])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@kms_dp_aux_dev.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][84] ([Intel XE#4331]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4294])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#4331])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_feature_discovery@chamelium:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#701])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#1138])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1138])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#310]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1421]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2316]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_flip@2x-plain-flip-interruptible.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: NOTRUN -> [DMESG-WARN][94] ([Intel XE#4543]) +8 other tests dmesg-warn
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#4543]) +12 other tests dmesg-warn
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-bmg: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2293] / [Intel XE#2380])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1397] / [Intel XE#1745])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1397])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#455]) +16 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2311]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#656]) +38 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#5390]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#651]) +14 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2351] / [Intel XE#4208]) +14 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#651]) +13 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#651]) +17 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#653]) +11 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2313]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#656]) +46 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#653]) +14 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2312]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_invalid_mode@bad-vsync-start:
- shard-adlp: [PASS][118] -> [DMESG-WARN][119] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_invalid_mode@bad-vsync-start.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@kms_invalid_mode@bad-vsync-start.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2925])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#346])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#346])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#346])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#346])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#3012])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2925])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#4208] / [i915#2575]) +93 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_panel_fitting@legacy:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#455]) +26 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-none:
- shard-adlp: NOTRUN -> [DMESG-WARN][130] ([Intel XE#2953] / [Intel XE#4173])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#599]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2763]) +7 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#870])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2938])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#870]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3309])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@kms_pm_dc@dc5-retention-flops.html
- shard-adlp: NOTRUN -> [SKIP][137] ([Intel XE#3309])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#718])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: NOTRUN -> [FAIL][140] ([Intel XE#3325])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#1406] / [Intel XE#1489]) +8 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1406] / [Intel XE#2893]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1122] / [Intel XE#1406])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1406] / [Intel XE#4208]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1406]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1406] / [Intel XE#4609])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html
* igt@kms_psr@pr-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][152] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@pr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#3414])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@kms_rotation_crc@primary-rotation-270.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#3414] / [Intel XE#3904])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3414])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#1127])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1127])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-adlp: NOTRUN -> [SKIP][160] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [FAIL][161] ([Intel XE#5890])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#1123])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][163] ([Intel XE#1126])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@non-blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#5626])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_eu_stall@non-blocking-re-enable.html
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#5626])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_eu_stall@non-blocking-re-enable.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#4837]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@interrupt-other:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#4837]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@single-step-one:
- shard-adlp: NOTRUN -> [SKIP][168] ([Intel XE#4837] / [Intel XE#5565]) +14 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_eudebug_online@single-step-one.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-adlp: NOTRUN -> [SKIP][169] ([Intel XE#4519])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#688]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_evict@evict-beng-large-cm.html
- shard-adlp: NOTRUN -> [SKIP][171] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][172] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#5563] / [Intel XE#688])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][174] -> [SKIP][175] ([Intel XE#1392])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1392]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#1392] / [Intel XE#5575]) +8 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2322]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][179] ([Intel XE#288] / [Intel XE#5561]) +31 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_exec_fault_mode@once-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#288]) +13 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#4208]) +282 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][182] -> [DMESG-WARN][183] ([Intel XE#3876]) +1 other test dmesg-warn
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#4837]) +11 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@process-many-execqueues-free:
- shard-adlp: NOTRUN -> [SKIP][185] ([Intel XE#4915]) +281 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@xe_exec_system_allocator@process-many-execqueues-free.html
* igt@xe_exec_system_allocator@process-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#4943]) +14 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@xe_exec_system_allocator@process-many-stride-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#4943]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@twice-malloc-fork-read:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#4915]) +116 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_exec_system_allocator@twice-malloc-fork-read.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-lnl: NOTRUN -> [ABORT][189] ([Intel XE#4917] / [Intel XE#5466])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-adlp: NOTRUN -> [ABORT][190] ([Intel XE#4917] / [Intel XE#5530])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-lnl: NOTRUN -> [ABORT][191] ([Intel XE#4757])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
- shard-adlp: NOTRUN -> [SKIP][193] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2229]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#2229])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- shard-adlp: NOTRUN -> [SKIP][196] ([Intel XE#2229])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-adlp: NOTRUN -> [SKIP][197] ([Intel XE#2229] / [Intel XE#5488])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-adlp: NOTRUN -> [SKIP][198] ([Intel XE#5100]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_mmap@pci-membarrier-bad-object.html
- shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#5100])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: NOTRUN -> [FAIL][200] ([Intel XE#4208])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [PASS][201] -> [FAIL][202] ([Intel XE#4208]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@reload.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_module_load@reload.html
* igt@xe_noexec_ping_pong:
- shard-adlp: NOTRUN -> [SKIP][203] ([Intel XE#379] / [Intel XE#5613])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@xe_noexec_ping_pong.html
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#379])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@xe_noexec_ping_pong.html
* igt@xe_oa@buffer-size:
- shard-adlp: NOTRUN -> [SKIP][205] ([Intel XE#5103])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_oa@buffer-size.html
* igt@xe_oa@non-zero-reason:
- shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#3573]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_oa@non-zero-reason.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][207] ([Intel XE#3573]) +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][208] ([Intel XE#977])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-adlp: NOTRUN -> [SKIP][209] ([Intel XE#979])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#979])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-i2c:
- shard-adlp: NOTRUN -> [SKIP][211] ([Intel XE#5694])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3hot-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#5742])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_pm@d3hot-i2c.html
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#5742])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_pm@d3hot-i2c.html
- shard-adlp: NOTRUN -> [SKIP][214] ([Intel XE#5742])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#1948])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-exec-after:
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#584])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#2284] / [Intel XE#366])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html
- shard-adlp: NOTRUN -> [SKIP][218] ([Intel XE#2284] / [Intel XE#366])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#579])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#4733]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-adlp: NOTRUN -> [SKIP][221] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#944]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-adlp: NOTRUN -> [SKIP][223] ([Intel XE#944]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
- shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#944])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#4130]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][226] ([Intel XE#3342])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][227] -> [SKIP][228] ([Intel XE#4208]) +191 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [FAIL][229] ([Intel XE#4208]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@core_getversion@all-cards.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@core_getversion@all-cards.html
* igt@fbdev@nullptr:
- shard-dg2-set2: [SKIP][231] ([Intel XE#2134]) -> [PASS][232] +1 other test pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@fbdev@nullptr.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@fbdev@nullptr.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][233] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][234] +16 other tests pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: [DMESG-FAIL][235] ([Intel XE#4543]) -> [PASS][236] +3 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][237] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][239] ([Intel XE#3124]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][241] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][243] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [SKIP][245] ([Intel XE#2291]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][247] ([Intel XE#4302]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][249] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][250] +3 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][251] ([Intel XE#2316]) -> [PASS][252] +6 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
- shard-adlp: [DMESG-WARN][253] ([Intel XE#4543]) -> [PASS][254] +7 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][255] ([Intel XE#301]) -> [PASS][256] +2 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][257] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][258] +4 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: [DMESG-FAIL][259] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][261] ([Intel XE#1503]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][263] ([Intel XE#3012]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_lease@invalid-create-leases:
- shard-dg2-set2: [SKIP][265] ([Intel XE#4208] / [i915#2575]) -> [PASS][266] +112 other tests pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_lease@invalid-create-leases.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_lease@invalid-create-leases.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][267] ([Intel XE#4596]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][269] ([Intel XE#718]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][271] ([Intel XE#1435]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][273] ([Intel XE#4459]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][275] ([Intel XE#2142]) -> [PASS][276] +1 other test pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [SKIP][277] ([Intel XE#4208]) -> [PASS][278] +270 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-dg2-set2: [SKIP][279] ([Intel XE#1392]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#3876]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_module_load@load:
- shard-lnl: ([SKIP][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [ABORT][293], [ABORT][294], [ABORT][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307]) ([Intel XE#378]) -> ([PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-2/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-8/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-1/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-4/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-5/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-3/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [SKIP][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358]) ([Intel XE#2457]) -> ([PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-8/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-3/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-3/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-4/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-8/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-3/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-7/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][383] ([Intel XE#4208] / [i915#2575]) -> [SKIP][384] ([Intel XE#623])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][385] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][386] ([Intel XE#316]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][387] ([Intel XE#316]) -> [SKIP][388] ([Intel XE#4208]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][389] ([Intel XE#4208]) -> [SKIP][390] ([Intel XE#316]) +3 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][391] ([Intel XE#316]) -> [SKIP][392] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][393] ([Intel XE#1124]) -> [SKIP][394] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][395] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][396] ([Intel XE#1124]) +8 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][397] ([Intel XE#4208]) -> [SKIP][398] ([Intel XE#610])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][399] ([Intel XE#4208]) -> [SKIP][400] ([Intel XE#1124]) +12 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][401] ([Intel XE#1124]) -> [SKIP][402] ([Intel XE#4208]) +11 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][403] ([Intel XE#4208] / [i915#2575]) -> [SKIP][404] ([Intel XE#2191]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][405] ([Intel XE#4208] / [i915#2575]) -> [SKIP][406] ([Intel XE#367]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][407] ([Intel XE#367]) -> [SKIP][408] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][409] ([Intel XE#2907]) -> [SKIP][410] ([Intel XE#4208]) +2 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][411] ([Intel XE#4208]) -> [SKIP][412] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][413] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][414] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][415] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][416] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][417] ([Intel XE#4208]) -> [SKIP][418] ([Intel XE#2907]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][419] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][420] ([Intel XE#4208]) +6 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][421] ([Intel XE#4418]) -> [SKIP][422] ([Intel XE#2351] / [Intel XE#4208])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: [SKIP][423] ([Intel XE#306]) -> [SKIP][424] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_chamelium_color@ctm-0-75.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][425] ([Intel XE#4208] / [i915#2575]) -> [SKIP][426] ([Intel XE#306]) +3 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][427] ([Intel XE#4208] / [i915#2575]) -> [SKIP][428] ([Intel XE#373]) +11 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: [SKIP][429] ([Intel XE#373]) -> [SKIP][430] ([Intel XE#4208] / [i915#2575]) +7 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [FAIL][431] ([Intel XE#1178]) -> [SKIP][432] ([Intel XE#4208] / [i915#2575])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_content_protection@atomic.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [SKIP][433] ([Intel XE#4208] / [i915#2575]) -> [FAIL][434] ([Intel XE#1178])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][435] ([Intel XE#2341]) -> [FAIL][436] ([Intel XE#1178])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][437] ([Intel XE#4208] / [i915#2575]) -> [SKIP][438] ([Intel XE#455]) +9 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_content_protection@lic-type-1.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][439] ([Intel XE#1188]) -> [SKIP][440] ([Intel XE#2341])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_content_protection@uevent.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][441] ([Intel XE#308]) -> [SKIP][442] ([Intel XE#4208] / [i915#2575])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][443] ([Intel XE#4208] / [i915#2575]) -> [SKIP][444] ([Intel XE#308]) +1 other test skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][445] ([Intel XE#4208] / [i915#2575]) -> [SKIP][446] ([Intel XE#323])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][447] ([Intel XE#323]) -> [SKIP][448] ([Intel XE#4208] / [i915#2575])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: [SKIP][449] ([Intel XE#4356]) -> [SKIP][450] ([Intel XE#4208])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][451] ([Intel XE#455]) -> [SKIP][452] ([Intel XE#2351] / [Intel XE#4208])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][453] ([Intel XE#4208]) -> [SKIP][454] ([Intel XE#455]) +5 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: [SKIP][455] ([Intel XE#4422]) -> [SKIP][456] ([Intel XE#4208]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: [SKIP][457] ([Intel XE#4208]) -> [SKIP][458] ([Intel XE#4422])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][459] ([Intel XE#776]) -> [SKIP][460] ([Intel XE#4208])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][461] ([Intel XE#4208] / [i915#2575]) -> [SKIP][462] ([Intel XE#701])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][463] ([Intel XE#1137]) -> [SKIP][464] ([Intel XE#4208] / [i915#2575])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][465] ([Intel XE#1135]) -> [SKIP][466] ([Intel XE#4208] / [i915#2575])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_feature_discovery@psr2.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@basic-flip-vs-modeset:
- shard-dg2-set2: [SKIP][467] ([Intel XE#4208] / [i915#2575]) -> [INCOMPLETE][468] ([Intel XE#2049] / [Intel XE#2594])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_flip@basic-flip-vs-modeset.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg2-set2: [SKIP][469] ([Intel XE#455]) -> [SKIP][470] ([Intel XE#4208]) +2 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][471] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][472] ([Intel XE#455]) +2 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][473] ([Intel XE#2311]) -> [SKIP][474] ([Intel XE#2312]) +9 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][475] ([Intel XE#2312]) -> [SKIP][476] ([Intel XE#2311]) +9 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][477] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][478] ([Intel XE#651]) +13 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][479] ([Intel XE#5390]) -> [SKIP][480] ([Intel XE#2312]) +5 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][481] ([Intel XE#2312]) -> [SKIP][482] ([Intel XE#5390]) +3 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][483] ([Intel XE#658]) -> [SKIP][484] ([Intel XE#2351] / [Intel XE#4208])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][485] ([Intel XE#651]) -> [SKIP][486] ([Intel XE#2351] / [Intel XE#4208]) +10 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][487] ([Intel XE#651]) -> [SKIP][488] ([Intel XE#4208]) +24 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][489] ([Intel XE#4208]) -> [SKIP][490] ([Intel XE#651]) +26 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][491] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][492] ([Intel XE#658]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][493] ([Intel XE#4208]) -> [SKIP][494] ([Intel XE#653]) +29 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][495] ([Intel XE#2312]) -> [SKIP][496] ([Intel XE#2313]) +13 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][497] ([Intel XE#653]) -> [SKIP][498] ([Intel XE#4208]) +23 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][499] ([Intel XE#653]) -> [SKIP][500] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][501] ([Intel XE#2313]) -> [SKIP][502] ([Intel XE#2312]) +10 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][503] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][504] ([Intel XE#653]) +11 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][505] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][506] ([Intel XE#3544])
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][507] ([Intel XE#2925]) -> [SKIP][508] ([Intel XE#4208])
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][509] ([Intel XE#4208]) -> [SKIP][510] ([Intel XE#2925])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2-set2: [SKIP][511] ([Intel XE#4208] / [i915#2575]) -> [SKIP][512] ([Intel XE#5021])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-y.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: [SKIP][513] ([Intel XE#5021]) -> [SKIP][514] ([Intel XE#4208] / [i915#2575])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][515] ([Intel XE#4208]) -> [SKIP][516] ([Intel XE#2938])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][517] ([Intel XE#870]) -> [SKIP][518] ([Intel XE#4208])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_pm_backlight@fade.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][519] ([Intel XE#4208]) -> [SKIP][520] ([Intel XE#870]) +1 other test skip
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][521] ([Intel XE#1122]) -> [SKIP][522] ([Intel XE#2351] / [Intel XE#4208])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][523] ([Intel XE#1129]) -> [SKIP][524] ([Intel XE#4208])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][525] ([Intel XE#4208]) -> [SKIP][526] ([Intel XE#908])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][527] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][528] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][529] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][530] ([Intel XE#1406] / [Intel XE#4208]) +6 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][531] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][532] ([Intel XE#1122] / [Intel XE#1406])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: [SKIP][533] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][534] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][535] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][536] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][537] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][538] ([Intel XE#1406] / [Intel XE#4208]) +9 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-dg2-set2: [SKIP][539] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][540] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr@fbc-psr2-no-drrs.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][541] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][542] ([Intel XE#1406] / [Intel XE#2939])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][543] ([Intel XE#1127]) -> [SKIP][544] ([Intel XE#4208] / [i915#2575])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][545] ([Intel XE#3414]) -> [SKIP][546] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][547] ([Intel XE#4208] / [i915#2575]) -> [SKIP][548] ([Intel XE#1127])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][549] ([Intel XE#4208] / [i915#2575]) -> [SKIP][550] ([Intel XE#3414])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][551] ([Intel XE#1729]) -> [SKIP][552] ([Intel XE#4208] / [i915#2575])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][553] ([Intel XE#2426]) -> [SKIP][554] ([Intel XE#2509])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][555] ([Intel XE#455]) -> [SKIP][556] ([Intel XE#4208] / [i915#2575]) +6 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_vrr@flip-dpms.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][557] ([Intel XE#4208] / [i915#2575]) -> [SKIP][558] ([Intel XE#2168])
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_vrr@lobf.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@kms_vrr@lobf.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-dg2-set2: [SKIP][559] ([Intel XE#4208]) -> [FAIL][560] ([Intel XE#5890])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][561] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][562] ([Intel XE#4208])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: [SKIP][563] -> [SKIP][564] ([Intel XE#4208])
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_configfs@survivability-mode.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][565] ([Intel XE#4208]) -> [SKIP][566] ([Intel XE#1123])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][567] ([Intel XE#1126]) -> [SKIP][568] ([Intel XE#4208])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: [SKIP][569] ([Intel XE#4208]) -> [SKIP][570] ([Intel XE#5626]) +1 other test skip
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: [SKIP][571] ([Intel XE#4837]) -> [SKIP][572] ([Intel XE#4208]) +12 other tests skip
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_eudebug@vm-bind-clear-faultable.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: [SKIP][573] ([Intel XE#4208]) -> [SKIP][574] ([Intel XE#4837]) +14 other tests skip
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eudebug@vma-ufence-faultable.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-466/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-dg2-set2: [SKIP][575] ([Intel XE#4208]) -> [SKIP][576] ([Intel XE#4518])
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_eudebug_sriov@deny-eudebug.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][577] ([Intel XE#1392]) -> [SKIP][578] ([Intel XE#4208]) +2 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [SKIP][579] ([Intel XE#4208]) -> [SKIP][580] ([Intel XE#1392]) +1 other test skip
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][581] ([Intel XE#4208]) -> [SKIP][582] ([Intel XE#288]) +37 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][583] ([Intel XE#288]) -> [SKIP][584] ([Intel XE#4208]) +27 other tests skip
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][585] ([Intel XE#2360]) -> [SKIP][586] ([Intel XE#4208])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
- shard-dg2-set2: [SKIP][587] ([Intel XE#4208]) -> [SKIP][588] ([Intel XE#4915]) +340 other tests skip
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: [SKIP][589] ([Intel XE#4915]) -> [SKIP][590] ([Intel XE#4208]) +264 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [SKIP][591] ([Intel XE#4208]) -> [ABORT][592] ([Intel XE#4917])
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][593] ([Intel XE#4208]) -> [SKIP][594] ([Intel XE#255])
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][595], [PASS][596], [SKIP][597], [PASS][598], [PASS][599], [PASS][600], [PASS][601], [PASS][602], [ABORT][603], [ABORT][604], [ABORT][605], [ABORT][606], [ABORT][607], [PASS][608], [PASS][609], [PASS][610], [PASS][611], [PASS][612], [PASS][613], [PASS][614], [PASS][615], [PASS][616], [PASS][617], [PASS][618], [PASS][619], [PASS][620]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][621], [PASS][622], [PASS][623], [PASS][624], [PASS][625], [PASS][626], [SKIP][627], [PASS][628], [PASS][629], [PASS][630], [PASS][631], [PASS][632], [PASS][633], [PASS][634], [PASS][635], [PASS][636], [PASS][637], [PASS][638], [PASS][639], [PASS][640], [PASS][641], [PASS][642], [PASS][643], [PASS][644], [PASS][645], [PASS][646]) ([Intel XE#378] / [Intel XE#5612])
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_module_load@load.html
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@xe_module_load@load.html
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@xe_module_load@load.html
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_module_load@load.html
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_module_load@load.html
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@xe_module_load@load.html
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_module_load@load.html
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_module_load@load.html
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_module_load@load.html
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_module_load@load.html
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_module_load@load.html
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-4/igt@xe_module_load@load.html
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_module_load@load.html
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_module_load@load.html
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_module_load@load.html
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_module_load@load.html
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-3/igt@xe_module_load@load.html
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-1/igt@xe_module_load@load.html
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@xe_module_load@load.html
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-9/igt@xe_module_load@load.html
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-2/igt@xe_module_load@load.html
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@xe_module_load@load.html
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-8/igt@xe_module_load@load.html
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@xe_module_load@load.html
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@xe_module_load@load.html
[646]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-adlp-6/igt@xe_module_load@load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][647] ([Intel XE#4208]) -> [SKIP][648] ([Intel XE#3573]) +10 other tests skip
[647]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
[648]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: [SKIP][649] ([Intel XE#4208]) -> [SKIP][650] ([Intel XE#5103])
[649]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_oa@mmio-triggered-reports-read.html
[650]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-463/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][651] ([Intel XE#3573]) -> [SKIP][652] ([Intel XE#4208]) +9 other tests skip
[651]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_oa@polling-small-buf.html
[652]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][653] ([Intel XE#4208]) -> [SKIP][654] ([Intel XE#977])
[653]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
[654]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][655] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][656] ([Intel XE#4208])
[655]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_pm@d3cold-basic.html
[656]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][657] ([Intel XE#4208]) -> [SKIP][658] ([Intel XE#2284])
[657]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
[658]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: [SKIP][659] ([Intel XE#4650]) -> [SKIP][660] ([Intel XE#4208])
[659]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_pmu@fn-engine-activity-load.html
[660]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-dg2-set2: [SKIP][661] ([Intel XE#4208]) -> [SKIP][662] ([Intel XE#4650])
[661]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[662]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@display-pxp-fb:
- shard-dg2-set2: [SKIP][663] ([Intel XE#4733]) -> [SKIP][664] ([Intel XE#4208]) +1 other test skip
[663]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_pxp@display-pxp-fb.html
[664]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: [SKIP][665] ([Intel XE#4208]) -> [SKIP][666] ([Intel XE#4733]) +4 other tests skip
[665]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
[666]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][667] ([Intel XE#4208]) -> [SKIP][668] ([Intel XE#944]) +1 other test skip
[667]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[668]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: [SKIP][669] ([Intel XE#944]) -> [SKIP][670] ([Intel XE#4208]) +2 other tests skip
[669]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_query@multigpu-query-invalid-extension.html
[670]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-dg2-set2: [SKIP][671] ([Intel XE#4814]) -> [SKIP][672] ([Intel XE#4208])
[671]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_render_copy@render-stress-1-copies.html
[672]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_render_copy@render-stress-1-copies.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: [SKIP][673] ([Intel XE#4208]) -> [SKIP][674] ([Intel XE#4130])
[673]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
[674]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-433/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_vm@bind-array-enobufs:
- shard-dg2-set2: [DMESG-FAIL][675] ([Intel XE#3876]) -> [SKIP][676] ([Intel XE#4208])
[675]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html
[676]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/shard-dg2-435/igt@xe_vm@bind-array-enobufs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5613
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8511 -> IGT_8512
* Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153588v1
IGT_8511: 8511
IGT_8512: 8512
xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
xe-pw-153588v1: 153588v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153588v1/index.html
[-- Attachment #2: Type: text/html, Size: 200866 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-08-27 23:49 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-26 17:50 [PATCH 0/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 1/2] Revert "drm/xe: Add VM bind IOCTL error injection" Jonathan Cavitt
2025-08-26 17:50 ` [PATCH 2/2] drm/xe/xe_vm: Add error injection support to lock and prep Jonathan Cavitt
2025-08-26 17:56 ` ✗ CI.checkpatch: warning for " Patchwork
2025-08-26 17:57 ` ✓ CI.KUnit: success " Patchwork
2025-08-26 18:50 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-27 4:01 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-27 4:25 ` [PATCH 0/2] " Matthew Brost
-- strict thread matches above, loose matches on Subject: below --
2025-08-26 20:57 [PATCH v3 0/3] " Jonathan Cavitt
2025-08-27 10:08 ` ✗ Xe.CI.Full: failure for " Patchwork
2025-08-27 20:36 [PATCH v6 0/3] " Jonathan Cavitt
2025-08-27 23:49 ` ✗ Xe.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).