intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [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

* ✓ CI.KUnit: success 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-26 22:06 ` Patchwork
  0 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-26 22:06 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/153536/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:04:49] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:04:53] 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
[22:05:22] Starting KUnit Kernel (1/1)...
[22:05:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:22] ================== guc_buf (11 subtests) ===================
[22:05:23] [PASSED] test_smallest
[22:05:23] [PASSED] test_largest
[22:05:23] [PASSED] test_granular
[22:05:23] [PASSED] test_unique
[22:05:23] [PASSED] test_overlap
[22:05:23] [PASSED] test_reusable
[22:05:23] [PASSED] test_too_big
[22:05:23] [PASSED] test_flush
[22:05:23] [PASSED] test_lookup
[22:05:23] [PASSED] test_data
[22:05:23] [PASSED] test_class
[22:05:23] ===================== [PASSED] guc_buf =====================
[22:05:23] =================== guc_dbm (7 subtests) ===================
[22:05:23] [PASSED] test_empty
[22:05:23] [PASSED] test_default
[22:05:23] ======================== test_size  ========================
[22:05:23] [PASSED] 4
[22:05:23] [PASSED] 8
[22:05:23] [PASSED] 32
[22:05:23] [PASSED] 256
[22:05:23] ==================== [PASSED] test_size ====================
[22:05:23] ======================= test_reuse  ========================
[22:05:23] [PASSED] 4
[22:05:23] [PASSED] 8
[22:05:23] [PASSED] 32
[22:05:23] [PASSED] 256
[22:05:23] =================== [PASSED] test_reuse ====================
[22:05:23] =================== test_range_overlap  ====================
[22:05:23] [PASSED] 4
[22:05:23] [PASSED] 8
[22:05:23] [PASSED] 32
[22:05:23] [PASSED] 256
[22:05:23] =============== [PASSED] test_range_overlap ================
[22:05:23] =================== test_range_compact  ====================
[22:05:23] [PASSED] 4
[22:05:23] [PASSED] 8
[22:05:23] [PASSED] 32
[22:05:23] [PASSED] 256
[22:05:23] =============== [PASSED] test_range_compact ================
[22:05:23] ==================== test_range_spare  =====================
[22:05:23] [PASSED] 4
[22:05:23] [PASSED] 8
[22:05:23] [PASSED] 32
[22:05:23] [PASSED] 256
[22:05:23] ================ [PASSED] test_range_spare =================
[22:05:23] ===================== [PASSED] guc_dbm =====================
[22:05:23] =================== guc_idm (6 subtests) ===================
[22:05:23] [PASSED] bad_init
[22:05:23] [PASSED] no_init
[22:05:23] [PASSED] init_fini
[22:05:23] [PASSED] check_used
[22:05:23] [PASSED] check_quota
[22:05:23] [PASSED] check_all
[22:05:23] ===================== [PASSED] guc_idm =====================
[22:05:23] ================== no_relay (3 subtests) ===================
[22:05:23] [PASSED] xe_drops_guc2pf_if_not_ready
[22:05:23] [PASSED] xe_drops_guc2vf_if_not_ready
[22:05:23] [PASSED] xe_rejects_send_if_not_ready
[22:05:23] ==================== [PASSED] no_relay =====================
[22:05:23] ================== pf_relay (14 subtests) ==================
[22:05:23] [PASSED] pf_rejects_guc2pf_too_short
[22:05:23] [PASSED] pf_rejects_guc2pf_too_long
[22:05:23] [PASSED] pf_rejects_guc2pf_no_payload
[22:05:23] [PASSED] pf_fails_no_payload
[22:05:23] [PASSED] pf_fails_bad_origin
[22:05:23] [PASSED] pf_fails_bad_type
[22:05:23] [PASSED] pf_txn_reports_error
[22:05:23] [PASSED] pf_txn_sends_pf2guc
[22:05:23] [PASSED] pf_sends_pf2guc
[22:05:23] [SKIPPED] pf_loopback_nop
[22:05:23] [SKIPPED] pf_loopback_echo
[22:05:23] [SKIPPED] pf_loopback_fail
[22:05:23] [SKIPPED] pf_loopback_busy
[22:05:23] [SKIPPED] pf_loopback_retry
[22:05:23] ==================== [PASSED] pf_relay =====================
[22:05:23] ================== vf_relay (3 subtests) ===================
[22:05:23] [PASSED] vf_rejects_guc2vf_too_short
[22:05:23] [PASSED] vf_rejects_guc2vf_too_long
[22:05:23] [PASSED] vf_rejects_guc2vf_no_payload
[22:05:23] ==================== [PASSED] vf_relay =====================
[22:05:23] ===================== lmtt (1 subtest) =====================
[22:05:23] ======================== test_ops  =========================
[22:05:23] [PASSED] 2-level
[22:05:23] [PASSED] multi-level
[22:05:23] ==================== [PASSED] test_ops =====================
[22:05:23] ====================== [PASSED] lmtt =======================
[22:05:23] ================= pf_service (11 subtests) =================
[22:05:23] [PASSED] pf_negotiate_any
[22:05:23] [PASSED] pf_negotiate_base_match
[22:05:23] [PASSED] pf_negotiate_base_newer
[22:05:23] [PASSED] pf_negotiate_base_next
[22:05:23] [SKIPPED] pf_negotiate_base_older
[22:05:23] [PASSED] pf_negotiate_base_prev
[22:05:23] [PASSED] pf_negotiate_latest_match
[22:05:23] [PASSED] pf_negotiate_latest_newer
[22:05:23] [PASSED] pf_negotiate_latest_next
[22:05:23] [SKIPPED] pf_negotiate_latest_older
[22:05:23] [SKIPPED] pf_negotiate_latest_prev
[22:05:23] =================== [PASSED] pf_service ====================
[22:05:23] =================== xe_mocs (2 subtests) ===================
[22:05:23] ================ xe_live_mocs_kernel_kunit  ================
[22:05:23] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:05:23] ================ xe_live_mocs_reset_kunit  =================
[22:05:23] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:05:23] ==================== [SKIPPED] xe_mocs =====================
[22:05:23] ================= xe_migrate (2 subtests) ==================
[22:05:23] ================= xe_migrate_sanity_kunit  =================
[22:05:23] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:05:23] ================== xe_validate_ccs_kunit  ==================
[22:05:23] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:05:23] =================== [SKIPPED] xe_migrate ===================
[22:05:23] ================== xe_dma_buf (1 subtest) ==================
[22:05:23] ==================== xe_dma_buf_kunit  =====================
[22:05:23] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:05:23] =================== [SKIPPED] xe_dma_buf ===================
[22:05:23] ================= xe_bo_shrink (1 subtest) =================
[22:05:23] =================== xe_bo_shrink_kunit  ====================
[22:05:23] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:05:23] ================== [SKIPPED] xe_bo_shrink ==================
[22:05:23] ==================== xe_bo (2 subtests) ====================
[22:05:23] ================== xe_ccs_migrate_kunit  ===================
[22:05:23] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:05:23] ==================== xe_bo_evict_kunit  ====================
[22:05:23] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:05:23] ===================== [SKIPPED] xe_bo ======================
[22:05:23] ==================== args (11 subtests) ====================
[22:05:23] [PASSED] count_args_test
[22:05:23] [PASSED] call_args_example
[22:05:23] [PASSED] call_args_test
[22:05:23] [PASSED] drop_first_arg_example
[22:05:23] [PASSED] drop_first_arg_test
[22:05:23] [PASSED] first_arg_example
[22:05:23] [PASSED] first_arg_test
[22:05:23] [PASSED] last_arg_example
[22:05:23] [PASSED] last_arg_test
[22:05:23] [PASSED] pick_arg_example
[22:05:23] [PASSED] sep_comma_example
[22:05:23] ====================== [PASSED] args =======================
[22:05:23] =================== xe_pci (3 subtests) ====================
[22:05:23] ==================== check_graphics_ip  ====================
[22:05:23] [PASSED] 12.70 Xe_LPG
[22:05:23] [PASSED] 12.71 Xe_LPG
[22:05:23] [PASSED] 12.74 Xe_LPG+
[22:05:23] [PASSED] 20.01 Xe2_HPG
[22:05:23] [PASSED] 20.02 Xe2_HPG
[22:05:23] [PASSED] 20.04 Xe2_LPG
[22:05:23] [PASSED] 30.00 Xe3_LPG
[22:05:23] [PASSED] 30.01 Xe3_LPG
[22:05:23] [PASSED] 30.03 Xe3_LPG
[22:05:23] ================ [PASSED] check_graphics_ip ================
[22:05:23] ===================== check_media_ip  ======================
[22:05:23] [PASSED] 13.00 Xe_LPM+
[22:05:23] [PASSED] 13.01 Xe2_HPM
[22:05:23] [PASSED] 20.00 Xe2_LPM
[22:05:23] [PASSED] 30.00 Xe3_LPM
[22:05:23] [PASSED] 30.02 Xe3_LPM
[22:05:23] ================= [PASSED] check_media_ip ==================
[22:05:23] ================= check_platform_gt_count  =================
[22:05:23] [PASSED] 0x9A60 (TIGERLAKE)
[22:05:23] [PASSED] 0x9A68 (TIGERLAKE)
[22:05:23] [PASSED] 0x9A70 (TIGERLAKE)
[22:05:23] [PASSED] 0x9A40 (TIGERLAKE)
[22:05:23] [PASSED] 0x9A49 (TIGERLAKE)
[22:05:23] [PASSED] 0x9A59 (TIGERLAKE)
[22:05:23] [PASSED] 0x9A78 (TIGERLAKE)
[22:05:23] [PASSED] 0x9AC0 (TIGERLAKE)
[22:05:23] [PASSED] 0x9AC9 (TIGERLAKE)
[22:05:23] [PASSED] 0x9AD9 (TIGERLAKE)
[22:05:23] [PASSED] 0x9AF8 (TIGERLAKE)
[22:05:23] [PASSED] 0x4C80 (ROCKETLAKE)
[22:05:23] [PASSED] 0x4C8A (ROCKETLAKE)
[22:05:23] [PASSED] 0x4C8B (ROCKETLAKE)
[22:05:23] [PASSED] 0x4C8C (ROCKETLAKE)
[22:05:23] [PASSED] 0x4C90 (ROCKETLAKE)
[22:05:23] [PASSED] 0x4C9A (ROCKETLAKE)
[22:05:23] [PASSED] 0x4680 (ALDERLAKE_S)
[22:05:23] [PASSED] 0x4682 (ALDERLAKE_S)
[22:05:23] [PASSED] 0x4688 (ALDERLAKE_S)
[22:05:23] [PASSED] 0x468A (ALDERLAKE_S)
[22:05:23] [PASSED] 0x468B (ALDERLAKE_S)
[22:05:23] [PASSED] 0x4690 (ALDERLAKE_S)
[22:05:23] [PASSED] 0x4692 (ALDERLAKE_S)
[22:05:23] [PASSED] 0x4693 (ALDERLAKE_S)
[22:05:23] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46AA (ALDERLAKE_P)
[22:05:23] [PASSED] 0x462A (ALDERLAKE_P)
[22:05:23] [PASSED] 0x4626 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x4628 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:05:23] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:05:23] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:05:23] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:05:23] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:05:23] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:05:23] [PASSED] 0xA721 (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA720 (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:05:23] [PASSED] 0xA780 (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA781 (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA782 (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA783 (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA788 (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA789 (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA78A (ALDERLAKE_S)
[22:05:23] [PASSED] 0xA78B (ALDERLAKE_S)
[22:05:23] [PASSED] 0x4905 (DG1)
[22:05:23] [PASSED] 0x4906 (DG1)
[22:05:23] [PASSED] 0x4907 (DG1)
[22:05:23] [PASSED] 0x4908 (DG1)
[22:05:23] [PASSED] 0x4909 (DG1)
[22:05:23] [PASSED] 0x56C0 (DG2)
[22:05:23] [PASSED] 0x56C2 (DG2)
[22:05:23] [PASSED] 0x56C1 (DG2)
[22:05:23] [PASSED] 0x7D51 (METEORLAKE)
[22:05:23] [PASSED] 0x7DD1 (METEORLAKE)
[22:05:23] [PASSED] 0x7D41 (METEORLAKE)
[22:05:23] [PASSED] 0x7D67 (METEORLAKE)
[22:05:23] [PASSED] 0xB640 (METEORLAKE)
[22:05:23] [PASSED] 0x56A0 (DG2)
[22:05:23] [PASSED] 0x56A1 (DG2)
[22:05:23] [PASSED] 0x56A2 (DG2)
[22:05:23] [PASSED] 0x56BE (DG2)
[22:05:23] [PASSED] 0x56BF (DG2)
[22:05:23] [PASSED] 0x5690 (DG2)
[22:05:23] [PASSED] 0x5691 (DG2)
[22:05:23] [PASSED] 0x5692 (DG2)
[22:05:23] [PASSED] 0x56A5 (DG2)
[22:05:23] [PASSED] 0x56A6 (DG2)
[22:05:23] [PASSED] 0x56B0 (DG2)
[22:05:23] [PASSED] 0x56B1 (DG2)
[22:05:23] [PASSED] 0x56BA (DG2)
[22:05:23] [PASSED] 0x56BB (DG2)
[22:05:23] [PASSED] 0x56BC (DG2)
[22:05:23] [PASSED] 0x56BD (DG2)
[22:05:23] [PASSED] 0x5693 (DG2)
[22:05:23] [PASSED] 0x5694 (DG2)
[22:05:23] [PASSED] 0x5695 (DG2)
[22:05:23] [PASSED] 0x56A3 (DG2)
[22:05:23] [PASSED] 0x56A4 (DG2)
[22:05:23] [PASSED] 0x56B2 (DG2)
[22:05:23] [PASSED] 0x56B3 (DG2)
[22:05:23] [PASSED] 0x5696 (DG2)
[22:05:23] [PASSED] 0x5697 (DG2)
[22:05:23] [PASSED] 0xB69 (PVC)
[22:05:23] [PASSED] 0xB6E (PVC)
[22:05:23] [PASSED] 0xBD4 (PVC)
[22:05:23] [PASSED] 0xBD5 (PVC)
[22:05:23] [PASSED] 0xBD6 (PVC)
[22:05:23] [PASSED] 0xBD7 (PVC)
[22:05:23] [PASSED] 0xBD8 (PVC)
[22:05:23] [PASSED] 0xBD9 (PVC)
[22:05:23] [PASSED] 0xBDA (PVC)
[22:05:23] [PASSED] 0xBDB (PVC)
[22:05:23] [PASSED] 0xBE0 (PVC)
[22:05:23] [PASSED] 0xBE1 (PVC)
[22:05:23] [PASSED] 0xBE5 (PVC)
[22:05:23] [PASSED] 0x7D40 (METEORLAKE)
[22:05:23] [PASSED] 0x7D45 (METEORLAKE)
[22:05:23] [PASSED] 0x7D55 (METEORLAKE)
[22:05:23] [PASSED] 0x7D60 (METEORLAKE)
[22:05:23] [PASSED] 0x7DD5 (METEORLAKE)
[22:05:23] [PASSED] 0x6420 (LUNARLAKE)
[22:05:23] [PASSED] 0x64A0 (LUNARLAKE)
[22:05:23] [PASSED] 0x64B0 (LUNARLAKE)
[22:05:23] [PASSED] 0xE202 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE209 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE20B (BATTLEMAGE)
[22:05:23] [PASSED] 0xE20C (BATTLEMAGE)
[22:05:23] [PASSED] 0xE20D (BATTLEMAGE)
[22:05:23] [PASSED] 0xE210 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE211 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE212 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE216 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE220 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE221 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE222 (BATTLEMAGE)
[22:05:23] [PASSED] 0xE223 (BATTLEMAGE)
[22:05:23] [PASSED] 0xB080 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB081 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB082 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB083 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB084 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB085 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB086 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB087 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB08F (PANTHERLAKE)
[22:05:23] [PASSED] 0xB090 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:05:23] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:05:23] [PASSED] 0xFD80 (PANTHERLAKE)
[22:05:23] [PASSED] 0xFD81 (PANTHERLAKE)
[22:05:23] ============= [PASSED] check_platform_gt_count =============
[22:05:23] ===================== [PASSED] xe_pci ======================
[22:05:23] =================== xe_rtp (2 subtests) ====================
[22:05:23] =============== xe_rtp_process_to_sr_tests  ================
[22:05:23] [PASSED] coalesce-same-reg
[22:05:23] [PASSED] no-match-no-add
[22:05:23] [PASSED] match-or
[22:05:23] [PASSED] match-or-xfail
[22:05:23] [PASSED] no-match-no-add-multiple-rules
[22:05:23] [PASSED] two-regs-two-entries
[22:05:23] [PASSED] clr-one-set-other
[22:05:23] [PASSED] set-field
[22:05:23] [PASSED] conflict-duplicate
[22:05:23] [PASSED] conflict-not-disjoint
[22:05:23] [PASSED] conflict-reg-type
[22:05:23] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:05:23] ================== xe_rtp_process_tests  ===================
[22:05:23] [PASSED] active1
[22:05:23] [PASSED] active2
[22:05:23] [PASSED] active-inactive
[22:05:23] [PASSED] inactive-active
[22:05:23] [PASSED] inactive-1st_or_active-inactive
[22:05:23] [PASSED] inactive-2nd_or_active-inactive
[22:05:23] [PASSED] inactive-last_or_active-inactive
[22:05:23] [PASSED] inactive-no_or_active-inactive
[22:05:23] ============== [PASSED] xe_rtp_process_tests ===============
[22:05:23] ===================== [PASSED] xe_rtp ======================
[22:05:23] ==================== xe_wa (1 subtest) =====================
[22:05:23] ======================== xe_wa_gt  =========================
[22:05:23] [PASSED] TIGERLAKE (B0)
[22:05:23] [PASSED] DG1 (A0)
[22:05:23] [PASSED] DG1 (B0)
[22:05:23] [PASSED] ALDERLAKE_S (A0)
[22:05:23] [PASSED] ALDERLAKE_S (B0)
[22:05:23] [PASSED] ALDERLAKE_S (C0)
[22:05:23] [PASSED] ALDERLAKE_S (D0)
[22:05:23] [PASSED] ALDERLAKE_P (A0)
[22:05:23] [PASSED] ALDERLAKE_P (B0)
[22:05:23] [PASSED] ALDERLAKE_P (C0)
[22:05:23] [PASSED] ALDERLAKE_S_RPLS (D0)
[22:05:23] [PASSED] ALDERLAKE_P_RPLU (E0)
[22:05:23] [PASSED] DG2_G10 (C0)
[22:05:23] [PASSED] DG2_G11 (B1)
[22:05:23] [PASSED] DG2_G12 (A1)
[22:05:23] [PASSED] METEORLAKE (g:A0, m:A0)
[22:05:23] [PASSED] METEORLAKE (g:A0, m:A0)
[22:05:23] [PASSED] METEORLAKE (g:A0, m:A0)
[22:05:23] [PASSED] LUNARLAKE (g:A0, m:A0)
[22:05:23] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[22:05:23] [PASSED] BATTLEMAGE (g:A0, m:A1)
[22:05:23] [PASSED] PANTHERLAKE (g:A0, m:A0)
[22:05:23] ==================== [PASSED] xe_wa_gt =====================
[22:05:23] ====================== [PASSED] xe_wa ======================
[22:05:23] ============================================================
[22:05:23] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[22:05:23] Elapsed time: 33.589s total, 4.250s configuring, 28.973s building, 0.330s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:05:23] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:05:25] 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
[22:05:48] Starting KUnit Kernel (1/1)...
[22:05:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:48] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:05:48] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:05:48] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:05:48] =========== drm_validate_clone_mode (2 subtests) ===========
[22:05:48] ============== drm_test_check_in_clone_mode  ===============
[22:05:48] [PASSED] in_clone_mode
[22:05:48] [PASSED] not_in_clone_mode
[22:05:48] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:05:48] =============== drm_test_check_valid_clones  ===============
[22:05:48] [PASSED] not_in_clone_mode
[22:05:48] [PASSED] valid_clone
[22:05:48] [PASSED] invalid_clone
[22:05:48] =========== [PASSED] drm_test_check_valid_clones ===========
[22:05:48] ============= [PASSED] drm_validate_clone_mode =============
[22:05:48] ============= drm_validate_modeset (1 subtest) =============
[22:05:48] [PASSED] drm_test_check_connector_changed_modeset
[22:05:48] ============== [PASSED] drm_validate_modeset ===============
[22:05:48] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:05:48] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:05:48] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:05:48] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:05:48] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:05:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:05:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:05:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:05:48] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:05:48] ============== drm_bridge_alloc (2 subtests) ===============
[22:05:48] [PASSED] drm_test_drm_bridge_alloc_basic
[22:05:48] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:05:48] ================ [PASSED] drm_bridge_alloc =================
[22:05:48] ================== drm_buddy (7 subtests) ==================
[22:05:48] [PASSED] drm_test_buddy_alloc_limit
[22:05:48] [PASSED] drm_test_buddy_alloc_optimistic
[22:05:48] [PASSED] drm_test_buddy_alloc_pessimistic
[22:05:48] [PASSED] drm_test_buddy_alloc_pathological
[22:05:48] [PASSED] drm_test_buddy_alloc_contiguous
[22:05:48] [PASSED] drm_test_buddy_alloc_clear
[22:05:48] [PASSED] drm_test_buddy_alloc_range_bias
[22:05:48] ==================== [PASSED] drm_buddy ====================
[22:05:48] ============= drm_cmdline_parser (40 subtests) =============
[22:05:48] [PASSED] drm_test_cmdline_force_d_only
[22:05:48] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:05:48] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:05:48] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:05:48] [PASSED] drm_test_cmdline_force_e_only
[22:05:48] [PASSED] drm_test_cmdline_res
[22:05:48] [PASSED] drm_test_cmdline_res_vesa
[22:05:48] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:05:48] [PASSED] drm_test_cmdline_res_rblank
[22:05:48] [PASSED] drm_test_cmdline_res_bpp
[22:05:48] [PASSED] drm_test_cmdline_res_refresh
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:05:48] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:05:48] [PASSED] drm_test_cmdline_res_margins_force_on
[22:05:48] [PASSED] drm_test_cmdline_res_vesa_margins
[22:05:48] [PASSED] drm_test_cmdline_name
[22:05:48] [PASSED] drm_test_cmdline_name_bpp
[22:05:48] [PASSED] drm_test_cmdline_name_option
[22:05:48] [PASSED] drm_test_cmdline_name_bpp_option
[22:05:48] [PASSED] drm_test_cmdline_rotate_0
[22:05:48] [PASSED] drm_test_cmdline_rotate_90
[22:05:48] [PASSED] drm_test_cmdline_rotate_180
[22:05:48] [PASSED] drm_test_cmdline_rotate_270
[22:05:48] [PASSED] drm_test_cmdline_hmirror
[22:05:48] [PASSED] drm_test_cmdline_vmirror
[22:05:48] [PASSED] drm_test_cmdline_margin_options
[22:05:48] [PASSED] drm_test_cmdline_multiple_options
[22:05:48] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:05:48] [PASSED] drm_test_cmdline_extra_and_option
[22:05:48] [PASSED] drm_test_cmdline_freestanding_options
[22:05:48] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:05:48] [PASSED] drm_test_cmdline_panel_orientation
[22:05:48] ================ drm_test_cmdline_invalid  =================
[22:05:48] [PASSED] margin_only
[22:05:48] [PASSED] interlace_only
[22:05:48] [PASSED] res_missing_x
[22:05:48] [PASSED] res_missing_y
[22:05:48] [PASSED] res_bad_y
[22:05:48] [PASSED] res_missing_y_bpp
[22:05:48] [PASSED] res_bad_bpp
[22:05:48] [PASSED] res_bad_refresh
[22:05:48] [PASSED] res_bpp_refresh_force_on_off
[22:05:48] [PASSED] res_invalid_mode
[22:05:48] [PASSED] res_bpp_wrong_place_mode
[22:05:48] [PASSED] name_bpp_refresh
[22:05:48] [PASSED] name_refresh
[22:05:48] [PASSED] name_refresh_wrong_mode
[22:05:48] [PASSED] name_refresh_invalid_mode
[22:05:48] [PASSED] rotate_multiple
[22:05:48] [PASSED] rotate_invalid_val
[22:05:48] [PASSED] rotate_truncated
[22:05:48] [PASSED] invalid_option
[22:05:48] [PASSED] invalid_tv_option
[22:05:48] [PASSED] truncated_tv_option
[22:05:48] ============ [PASSED] drm_test_cmdline_invalid =============
[22:05:48] =============== drm_test_cmdline_tv_options  ===============
[22:05:48] [PASSED] NTSC
[22:05:48] [PASSED] NTSC_443
[22:05:48] [PASSED] NTSC_J
[22:05:48] [PASSED] PAL
[22:05:48] [PASSED] PAL_M
[22:05:48] [PASSED] PAL_N
[22:05:48] [PASSED] SECAM
[22:05:48] [PASSED] MONO_525
[22:05:48] [PASSED] MONO_625
[22:05:48] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:05:48] =============== [PASSED] drm_cmdline_parser ================
[22:05:48] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:05:48] [PASSED] drm_test_connector_hdmi_init_valid
[22:05:48] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:05:48] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:05:48] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:05:48] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:05:48] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:05:48] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:05:48] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:05:48] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[22:05:48] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:05:48] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:05:48] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:05:48] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:05:48] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:05:48] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:05:48] [PASSED] drm_test_connector_hdmi_init_null_product
[22:05:48] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:05:48] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:05:48] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:05:48] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:05:48] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:05:48] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:05:48] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:05:48] ========= drm_test_connector_hdmi_init_type_valid  =========
[22:05:48] [PASSED] HDMI-A
[22:05:48] [PASSED] HDMI-B
[22:05:48] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:05:48] ======== drm_test_connector_hdmi_init_type_invalid  ========
[22:05:48] [PASSED] Unknown
[22:05:48] [PASSED] VGA
[22:05:48] [PASSED] DVI-I
[22:05:48] [PASSED] DVI-D
[22:05:48] [PASSED] DVI-A
[22:05:48] [PASSED] Composite
[22:05:48] [PASSED] SVIDEO
[22:05:48] [PASSED] LVDS
[22:05:48] [PASSED] Component
[22:05:48] [PASSED] DIN
[22:05:48] [PASSED] DP
[22:05:48] [PASSED] TV
[22:05:48] [PASSED] eDP
[22:05:48] [PASSED] Virtual
[22:05:48] [PASSED] DSI
[22:05:48] [PASSED] DPI
[22:05:48] [PASSED] Writeback
[22:05:48] [PASSED] SPI
[22:05:48] [PASSED] USB
[22:05:48] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:05:48] ============ [PASSED] drmm_connector_hdmi_init =============
[22:05:48] ============= drmm_connector_init (3 subtests) =============
[22:05:48] [PASSED] drm_test_drmm_connector_init
[22:05:48] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:05:48] ========= drm_test_drmm_connector_init_type_valid  =========
[22:05:48] [PASSED] Unknown
[22:05:48] [PASSED] VGA
[22:05:48] [PASSED] DVI-I
[22:05:48] [PASSED] DVI-D
[22:05:48] [PASSED] DVI-A
[22:05:48] [PASSED] Composite
[22:05:48] [PASSED] SVIDEO
[22:05:48] [PASSED] LVDS
[22:05:48] [PASSED] Component
[22:05:48] [PASSED] DIN
[22:05:48] [PASSED] DP
[22:05:48] [PASSED] HDMI-A
[22:05:48] [PASSED] HDMI-B
[22:05:48] [PASSED] TV
[22:05:48] [PASSED] eDP
[22:05:48] [PASSED] Virtual
[22:05:48] [PASSED] DSI
[22:05:48] [PASSED] DPI
[22:05:48] [PASSED] Writeback
[22:05:48] [PASSED] SPI
[22:05:48] [PASSED] USB
[22:05:48] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:05:48] =============== [PASSED] drmm_connector_init ===============
[22:05:48] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_init
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:05:48] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[22:05:48] [PASSED] Unknown
[22:05:48] [PASSED] VGA
[22:05:48] [PASSED] DVI-I
[22:05:48] [PASSED] DVI-D
[22:05:48] [PASSED] DVI-A
[22:05:48] [PASSED] Composite
[22:05:48] [PASSED] SVIDEO
[22:05:48] [PASSED] LVDS
[22:05:48] [PASSED] Component
[22:05:48] [PASSED] DIN
[22:05:48] [PASSED] DP
[22:05:48] [PASSED] HDMI-A
[22:05:48] [PASSED] HDMI-B
[22:05:48] [PASSED] TV
[22:05:48] [PASSED] eDP
[22:05:48] [PASSED] Virtual
[22:05:48] [PASSED] DSI
[22:05:48] [PASSED] DPI
[22:05:48] [PASSED] Writeback
[22:05:48] [PASSED] SPI
[22:05:48] [PASSED] USB
[22:05:48] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:05:48] ======== drm_test_drm_connector_dynamic_init_name  =========
[22:05:48] [PASSED] Unknown
[22:05:48] [PASSED] VGA
[22:05:48] [PASSED] DVI-I
[22:05:48] [PASSED] DVI-D
[22:05:48] [PASSED] DVI-A
[22:05:48] [PASSED] Composite
[22:05:48] [PASSED] SVIDEO
[22:05:48] [PASSED] LVDS
[22:05:48] [PASSED] Component
[22:05:48] [PASSED] DIN
[22:05:48] [PASSED] DP
[22:05:48] [PASSED] HDMI-A
[22:05:48] [PASSED] HDMI-B
[22:05:48] [PASSED] TV
[22:05:48] [PASSED] eDP
[22:05:48] [PASSED] Virtual
[22:05:48] [PASSED] DSI
[22:05:48] [PASSED] DPI
[22:05:48] [PASSED] Writeback
[22:05:48] [PASSED] SPI
[22:05:48] [PASSED] USB
[22:05:48] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:05:48] =========== [PASSED] drm_connector_dynamic_init ============
[22:05:48] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:05:48] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:05:48] ======= drm_connector_dynamic_register (7 subtests) ========
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:05:48] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:05:48] ========= [PASSED] drm_connector_dynamic_register ==========
[22:05:48] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:05:48] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:05:48] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:05:48] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:05:48] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:05:48] ========== drm_test_get_tv_mode_from_name_valid  ===========
[22:05:48] [PASSED] NTSC
[22:05:48] [PASSED] NTSC-443
[22:05:48] [PASSED] NTSC-J
[22:05:48] [PASSED] PAL
[22:05:48] [PASSED] PAL-M
[22:05:48] [PASSED] PAL-N
[22:05:48] [PASSED] SECAM
[22:05:48] [PASSED] Mono
[22:05:48] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:05:48] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:05:48] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:05:48] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:05:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:05:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:05:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:05:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:05:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:05:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:05:48] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[22:05:48] [PASSED] VIC 96
[22:05:48] [PASSED] VIC 97
[22:05:48] [PASSED] VIC 101
[22:05:48] [PASSED] VIC 102
[22:05:48] [PASSED] VIC 106
[22:05:48] [PASSED] VIC 107
[22:05:48] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:05:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:05:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:05:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:05:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:05:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:05:48] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:05:48] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:05:48] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[22:05:48] [PASSED] Automatic
[22:05:48] [PASSED] Full
[22:05:48] [PASSED] Limited 16:235
[22:05:48] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:05:48] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:05:48] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:05:48] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:05:48] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[22:05:48] [PASSED] RGB
[22:05:48] [PASSED] YUV 4:2:0
[22:05:48] [PASSED] YUV 4:2:2
[22:05:48] [PASSED] YUV 4:4:4
[22:05:48] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:05:48] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:05:48] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:05:48] ============= drm_damage_helper (21 subtests) ==============
[22:05:48] [PASSED] drm_test_damage_iter_no_damage
[22:05:48] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:05:48] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:05:48] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:05:48] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:05:48] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:05:48] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:05:48] [PASSED] drm_test_damage_iter_simple_damage
[22:05:48] [PASSED] drm_test_damage_iter_single_damage
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:05:48] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:05:48] [PASSED] drm_test_damage_iter_damage
[22:05:48] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:05:48] [PASSED] drm_test_damage_iter_damage_one_outside
[22:05:48] [PASSED] drm_test_damage_iter_damage_src_moved
[22:05:48] [PASSED] drm_test_damage_iter_damage_not_visible
[22:05:48] ================ [PASSED] drm_damage_helper ================
[22:05:48] ============== drm_dp_mst_helper (3 subtests) ==============
[22:05:48] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[22:05:48] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:05:48] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:05:48] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:05:48] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:05:48] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:05:48] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:05:48] ============== drm_test_dp_mst_calc_pbn_div  ===============
[22:05:48] [PASSED] Link rate 2000000 lane count 4
[22:05:48] [PASSED] Link rate 2000000 lane count 2
[22:05:48] [PASSED] Link rate 2000000 lane count 1
[22:05:48] [PASSED] Link rate 1350000 lane count 4
[22:05:48] [PASSED] Link rate 1350000 lane count 2
[22:05:48] [PASSED] Link rate 1350000 lane count 1
[22:05:48] [PASSED] Link rate 1000000 lane count 4
[22:05:48] [PASSED] Link rate 1000000 lane count 2
[22:05:48] [PASSED] Link rate 1000000 lane count 1
[22:05:48] [PASSED] Link rate 810000 lane count 4
[22:05:48] [PASSED] Link rate 810000 lane count 2
[22:05:48] [PASSED] Link rate 810000 lane count 1
[22:05:48] [PASSED] Link rate 540000 lane count 4
[22:05:48] [PASSED] Link rate 540000 lane count 2
[22:05:48] [PASSED] Link rate 540000 lane count 1
[22:05:48] [PASSED] Link rate 270000 lane count 4
[22:05:48] [PASSED] Link rate 270000 lane count 2
[22:05:48] [PASSED] Link rate 270000 lane count 1
[22:05:48] [PASSED] Link rate 162000 lane count 4
[22:05:48] [PASSED] Link rate 162000 lane count 2
[22:05:48] [PASSED] Link rate 162000 lane count 1
[22:05:48] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:05:48] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[22:05:48] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:05:48] [PASSED] DP_POWER_UP_PHY with port number
[22:05:48] [PASSED] DP_POWER_DOWN_PHY with port number
[22:05:48] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:05:48] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:05:48] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:05:48] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:05:48] [PASSED] DP_QUERY_PAYLOAD with port number
[22:05:48] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:05:48] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:05:48] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:05:48] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:05:48] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:05:48] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:05:48] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:05:48] [PASSED] DP_REMOTE_I2C_READ with port number
[22:05:48] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:05:48] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:05:48] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:05:48] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:05:48] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:05:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:05:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:05:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:05:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:05:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:05:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:05:48] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:05:48] ================ [PASSED] drm_dp_mst_helper ================
[22:05:48] ================== drm_exec (7 subtests) ===================
[22:05:48] [PASSED] sanitycheck
[22:05:48] [PASSED] test_lock
[22:05:48] [PASSED] test_lock_unlock
[22:05:48] [PASSED] test_duplicates
[22:05:48] [PASSED] test_prepare
[22:05:48] [PASSED] test_prepare_array
[22:05:48] [PASSED] test_multiple_loops
[22:05:48] ==================== [PASSED] drm_exec =====================
[22:05:48] =========== drm_format_helper_test (17 subtests) ===========
[22:05:48] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:05:48] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:05:48] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:05:48] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:05:48] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:05:48] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:05:48] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:05:48] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:05:48] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:05:48] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:05:48] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:05:48] ============== drm_test_fb_xrgb8888_to_mono  ===============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:05:48] ==================== drm_test_fb_swab  =====================
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ================ [PASSED] drm_test_fb_swab =================
[22:05:48] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:05:48] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[22:05:48] [PASSED] single_pixel_source_buffer
[22:05:48] [PASSED] single_pixel_clip_rectangle
[22:05:48] [PASSED] well_known_colors
[22:05:48] [PASSED] destination_pitch
[22:05:48] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:05:48] ================= drm_test_fb_clip_offset  =================
[22:05:48] [PASSED] pass through
[22:05:48] [PASSED] horizontal offset
[22:05:48] [PASSED] vertical offset
[22:05:48] [PASSED] horizontal and vertical offset
[22:05:48] [PASSED] horizontal offset (custom pitch)
[22:05:48] [PASSED] vertical offset (custom pitch)
[22:05:48] [PASSED] horizontal and vertical offset (custom pitch)
[22:05:48] ============= [PASSED] drm_test_fb_clip_offset =============
[22:05:48] =================== drm_test_fb_memcpy  ====================
[22:05:48] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:05:48] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:05:48] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:05:48] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:05:48] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:05:48] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:05:48] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:05:48] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:05:48] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:05:48] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:05:48] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:05:48] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:05:48] =============== [PASSED] drm_test_fb_memcpy ================
[22:05:48] ============= [PASSED] drm_format_helper_test ==============
[22:05:48] ================= drm_format (18 subtests) =================
[22:05:48] [PASSED] drm_test_format_block_width_invalid
[22:05:48] [PASSED] drm_test_format_block_width_one_plane
[22:05:48] [PASSED] drm_test_format_block_width_two_plane
[22:05:48] [PASSED] drm_test_format_block_width_three_plane
[22:05:48] [PASSED] drm_test_format_block_width_tiled
[22:05:48] [PASSED] drm_test_format_block_height_invalid
[22:05:48] [PASSED] drm_test_format_block_height_one_plane
[22:05:48] [PASSED] drm_test_format_block_height_two_plane
[22:05:48] [PASSED] drm_test_format_block_height_three_plane
[22:05:48] [PASSED] drm_test_format_block_height_tiled
[22:05:48] [PASSED] drm_test_format_min_pitch_invalid
[22:05:48] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:05:48] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:05:48] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:05:48] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:05:48] [PASSED] drm_test_format_min_pitch_two_plane
[22:05:48] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:05:48] [PASSED] drm_test_format_min_pitch_tiled
[22:05:48] =================== [PASSED] drm_format ====================
[22:05:48] ============== drm_framebuffer (10 subtests) ===============
[22:05:48] ========== drm_test_framebuffer_check_src_coords  ==========
[22:05:48] [PASSED] Success: source fits into fb
[22:05:48] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:05:48] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:05:48] [PASSED] Fail: overflowing fb with source width
[22:05:48] [PASSED] Fail: overflowing fb with source height
[22:05:48] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:05:48] [PASSED] drm_test_framebuffer_cleanup
[22:05:48] =============== drm_test_framebuffer_create  ===============
[22:05:48] [PASSED] ABGR8888 normal sizes
[22:05:48] [PASSED] ABGR8888 max sizes
[22:05:48] [PASSED] ABGR8888 pitch greater than min required
[22:05:48] [PASSED] ABGR8888 pitch less than min required
[22:05:48] [PASSED] ABGR8888 Invalid width
[22:05:48] [PASSED] ABGR8888 Invalid buffer handle
[22:05:48] [PASSED] No pixel format
[22:05:48] [PASSED] ABGR8888 Width 0
[22:05:48] [PASSED] ABGR8888 Height 0
[22:05:48] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:05:48] [PASSED] ABGR8888 Large buffer offset
[22:05:48] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:05:48] [PASSED] ABGR8888 Invalid flag
[22:05:48] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:05:48] [PASSED] ABGR8888 Valid buffer modifier
[22:05:48] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:05:48] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] NV12 Normal sizes
[22:05:48] [PASSED] NV12 Max sizes
[22:05:48] [PASSED] NV12 Invalid pitch
[22:05:48] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:05:48] [PASSED] NV12 different  modifier per-plane
[22:05:48] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:05:48] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] NV12 Modifier for inexistent plane
[22:05:48] [PASSED] NV12 Handle for inexistent plane
[22:05:48] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:05:48] [PASSED] YVU420 Normal sizes
[22:05:48] [PASSED] YVU420 Max sizes
[22:05:48] [PASSED] YVU420 Invalid pitch
[22:05:48] [PASSED] YVU420 Different pitches
[22:05:48] [PASSED] YVU420 Different buffer offsets/pitches
[22:05:48] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:05:48] [PASSED] YVU420 Valid modifier
[22:05:48] [PASSED] YVU420 Different modifiers per plane
[22:05:48] [PASSED] YVU420 Modifier for inexistent plane
[22:05:48] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:05:48] [PASSED] X0L2 Normal sizes
[22:05:48] [PASSED] X0L2 Max sizes
[22:05:48] [PASSED] X0L2 Invalid pitch
[22:05:48] [PASSED] X0L2 Pitch greater than minimum required
[22:05:48] [PASSED] X0L2 Handle for inexistent plane
[22:05:48] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:05:48] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:05:48] [PASSED] X0L2 Valid modifier
[22:05:48] [PASSED] X0L2 Modifier for inexistent plane
[22:05:48] =========== [PASSED] drm_test_framebuffer_create ===========
[22:05:48] [PASSED] drm_test_framebuffer_free
[22:05:48] [PASSED] drm_test_framebuffer_init
[22:05:48] [PASSED] drm_test_framebuffer_init_bad_format
[22:05:48] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:05:48] [PASSED] drm_test_framebuffer_lookup
[22:05:48] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:05:48] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:05:48] ================= [PASSED] drm_framebuffer =================
[22:05:48] ================ drm_gem_shmem (8 subtests) ================
[22:05:48] [PASSED] drm_gem_shmem_test_obj_create
[22:05:48] [PASSED] drm_gem_shmem_test_obj_create_private
[22:05:48] [PASSED] drm_gem_shmem_test_pin_pages
[22:05:48] [PASSED] drm_gem_shmem_test_vmap
[22:05:48] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:05:48] [PASSED] drm_gem_shmem_test_get_sg_table
[22:05:48] [PASSED] drm_gem_shmem_test_madvise
[22:05:48] [PASSED] drm_gem_shmem_test_purge
[22:05:48] ================== [PASSED] drm_gem_shmem ==================
[22:05:48] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:05:48] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[22:05:48] [PASSED] Automatic
[22:05:48] [PASSED] Full
[22:05:48] [PASSED] Limited 16:235
[22:05:48] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:05:48] [PASSED] drm_test_check_disable_connector
[22:05:48] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:05:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:05:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:05:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:05:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:05:48] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:05:48] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:05:48] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:05:48] [PASSED] drm_test_check_output_bpc_dvi
[22:05:48] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:05:48] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:05:48] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:05:48] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:05:48] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:05:48] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:05:48] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:05:48] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:05:48] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:05:48] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:05:48] [PASSED] drm_test_check_broadcast_rgb_value
[22:05:48] [PASSED] drm_test_check_bpc_8_value
[22:05:48] [PASSED] drm_test_check_bpc_10_value
[22:05:48] [PASSED] drm_test_check_bpc_12_value
[22:05:48] [PASSED] drm_test_check_format_value
[22:05:48] [PASSED] drm_test_check_tmds_char_value
[22:05:48] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:05:48] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:05:48] [PASSED] drm_test_check_mode_valid
[22:05:48] [PASSED] drm_test_check_mode_valid_reject
[22:05:48] [PASSED] drm_test_check_mode_valid_reject_rate
[22:05:48] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:05:48] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:05:48] ================= drm_managed (2 subtests) =================
[22:05:48] [PASSED] drm_test_managed_release_action
[22:05:48] [PASSED] drm_test_managed_run_action
[22:05:48] =================== [PASSED] drm_managed ===================
[22:05:48] =================== drm_mm (6 subtests) ====================
[22:05:48] [PASSED] drm_test_mm_init
[22:05:48] [PASSED] drm_test_mm_debug
[22:05:48] [PASSED] drm_test_mm_align32
[22:05:48] [PASSED] drm_test_mm_align64
[22:05:48] [PASSED] drm_test_mm_lowest
[22:05:48] [PASSED] drm_test_mm_highest
[22:05:48] ===================== [PASSED] drm_mm ======================
[22:05:48] ============= drm_modes_analog_tv (5 subtests) =============
[22:05:48] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:05:48] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:05:48] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:05:48] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:05:48] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:05:48] =============== [PASSED] drm_modes_analog_tv ===============
[22:05:48] ============== drm_plane_helper (2 subtests) ===============
[22:05:48] =============== drm_test_check_plane_state  ================
[22:05:48] [PASSED] clipping_simple
[22:05:48] [PASSED] clipping_rotate_reflect
[22:05:48] [PASSED] positioning_simple
[22:05:48] [PASSED] upscaling
[22:05:48] [PASSED] downscaling
[22:05:48] [PASSED] rounding1
[22:05:48] [PASSED] rounding2
[22:05:48] [PASSED] rounding3
[22:05:48] [PASSED] rounding4
[22:05:48] =========== [PASSED] drm_test_check_plane_state ============
[22:05:48] =========== drm_test_check_invalid_plane_state  ============
[22:05:48] [PASSED] positioning_invalid
[22:05:48] [PASSED] upscaling_invalid
[22:05:48] [PASSED] downscaling_invalid
[22:05:48] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:05:48] ================ [PASSED] drm_plane_helper =================
[22:05:48] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:05:48] ====== drm_test_connector_helper_tv_get_modes_check  =======
[22:05:48] [PASSED] None
[22:05:48] [PASSED] PAL
[22:05:48] [PASSED] NTSC
[22:05:48] [PASSED] Both, NTSC Default
[22:05:48] [PASSED] Both, PAL Default
[22:05:48] [PASSED] Both, NTSC Default, with PAL on command-line
[22:05:48] [PASSED] Both, PAL Default, with NTSC on command-line
[22:05:48] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:05:48] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:05:48] ================== drm_rect (9 subtests) ===================
[22:05:48] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:05:48] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:05:48] [PASSED] drm_test_rect_clip_scaled_clipped
[22:05:48] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:05:48] ================= drm_test_rect_intersect  =================
[22:05:48] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:05:48] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:05:48] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:05:48] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:05:48] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:05:48] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:05:48] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:05:48] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:05:48] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:05:48] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:05:48] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:05:48] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:05:48] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:05:48] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:05:48] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:05:48] ============= [PASSED] drm_test_rect_intersect =============
[22:05:48] ================ drm_test_rect_calc_hscale  ================
[22:05:48] [PASSED] normal use
[22:05:48] [PASSED] out of max range
[22:05:48] [PASSED] out of min range
[22:05:48] [PASSED] zero dst
[22:05:48] [PASSED] negative src
[22:05:48] [PASSED] negative dst
[22:05:48] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:05:48] ================ drm_test_rect_calc_vscale  ================
[22:05:48] [PASSED] normal use
[22:05:48] [PASSED] out of max range
[22:05:48] [PASSED] out of min range
[22:05:48] [PASSED] zero dst
[22:05:48] [PASSED] negative src
[22:05:48] [PASSED] negative dst
[22:05:48] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:05:48] ================== drm_test_rect_rotate  ===================
[22:05:48] [PASSED] reflect-x
[22:05:48] [PASSED] reflect-y
[22:05:48] [PASSED] rotate-0
[22:05:48] [PASSED] rotate-90
[22:05:48] [PASSED] rotate-180
[22:05:48] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[22:05:48] ============== [PASSED] drm_test_rect_rotate ===============
[22:05:48] ================ drm_test_rect_rotate_inv  =================
[22:05:48] [PASSED] reflect-x
[22:05:48] [PASSED] reflect-y
[22:05:48] [PASSED] rotate-0
[22:05:48] [PASSED] rotate-90
[22:05:48] [PASSED] rotate-180
[22:05:48] [PASSED] rotate-270
[22:05:48] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:05:48] ==================== [PASSED] drm_rect =====================
[22:05:48] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:05:48] ============ drm_test_sysfb_build_fourcc_list  =============
[22:05:48] [PASSED] no native formats
[22:05:48] [PASSED] XRGB8888 as native format
[22:05:48] [PASSED] remove duplicates
[22:05:48] [PASSED] convert alpha formats
[22:05:48] [PASSED] random formats
[22:05:48] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:05:48] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:05:48] ============================================================
[22:05:48] Testing complete. Ran 616 tests: passed: 616
[22:05:48] Elapsed time: 24.938s total, 1.780s configuring, 22.986s building, 0.141s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:05:48] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:05:50] 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
[22:05:57] Starting KUnit Kernel (1/1)...
[22:05:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:57] ================= ttm_device (5 subtests) ==================
[22:05:57] [PASSED] ttm_device_init_basic
[22:05:57] [PASSED] ttm_device_init_multiple
[22:05:57] [PASSED] ttm_device_fini_basic
[22:05:57] [PASSED] ttm_device_init_no_vma_man
[22:05:57] ================== ttm_device_init_pools  ==================
[22:05:57] [PASSED] No DMA allocations, no DMA32 required
[22:05:57] [PASSED] DMA allocations, DMA32 required
[22:05:57] [PASSED] No DMA allocations, DMA32 required
[22:05:57] [PASSED] DMA allocations, no DMA32 required
[22:05:57] ============== [PASSED] ttm_device_init_pools ==============
[22:05:57] =================== [PASSED] ttm_device ====================
[22:05:57] ================== ttm_pool (8 subtests) ===================
[22:05:57] ================== ttm_pool_alloc_basic  ===================
[22:05:57] [PASSED] One page
[22:05:57] [PASSED] More than one page
[22:05:57] [PASSED] Above the allocation limit
[22:05:57] [PASSED] One page, with coherent DMA mappings enabled
[22:05:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:05:57] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:05:57] ============== ttm_pool_alloc_basic_dma_addr  ==============
[22:05:57] [PASSED] One page
[22:05:57] [PASSED] More than one page
[22:05:57] [PASSED] Above the allocation limit
[22:05:57] [PASSED] One page, with coherent DMA mappings enabled
[22:05:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:05:57] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:05:57] [PASSED] ttm_pool_alloc_order_caching_match
[22:05:57] [PASSED] ttm_pool_alloc_caching_mismatch
[22:05:57] [PASSED] ttm_pool_alloc_order_mismatch
[22:05:57] [PASSED] ttm_pool_free_dma_alloc
[22:05:57] [PASSED] ttm_pool_free_no_dma_alloc
[22:05:57] [PASSED] ttm_pool_fini_basic
[22:05:57] ==================== [PASSED] ttm_pool =====================
[22:05:57] ================ ttm_resource (8 subtests) =================
[22:05:57] ================= ttm_resource_init_basic  =================
[22:05:57] [PASSED] Init resource in TTM_PL_SYSTEM
[22:05:57] [PASSED] Init resource in TTM_PL_VRAM
[22:05:57] [PASSED] Init resource in a private placement
[22:05:57] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:05:57] ============= [PASSED] ttm_resource_init_basic =============
[22:05:57] [PASSED] ttm_resource_init_pinned
[22:05:57] [PASSED] ttm_resource_fini_basic
[22:05:57] [PASSED] ttm_resource_manager_init_basic
[22:05:57] [PASSED] ttm_resource_manager_usage_basic
[22:05:57] [PASSED] ttm_resource_manager_set_used_basic
[22:05:57] [PASSED] ttm_sys_man_alloc_basic
[22:05:57] [PASSED] ttm_sys_man_free_basic
[22:05:57] ================== [PASSED] ttm_resource ===================
[22:05:57] =================== ttm_tt (15 subtests) ===================
[22:05:57] ==================== ttm_tt_init_basic  ====================
[22:05:57] [PASSED] Page-aligned size
[22:05:57] [PASSED] Extra pages requested
[22:05:57] ================ [PASSED] ttm_tt_init_basic ================
[22:05:57] [PASSED] ttm_tt_init_misaligned
[22:05:57] [PASSED] ttm_tt_fini_basic
[22:05:57] [PASSED] ttm_tt_fini_sg
[22:05:57] [PASSED] ttm_tt_fini_shmem
[22:05:57] [PASSED] ttm_tt_create_basic
[22:05:57] [PASSED] ttm_tt_create_invalid_bo_type
[22:05:57] [PASSED] ttm_tt_create_ttm_exists
[22:05:57] [PASSED] ttm_tt_create_failed
[22:05:57] [PASSED] ttm_tt_destroy_basic
[22:05:57] [PASSED] ttm_tt_populate_null_ttm
[22:05:57] [PASSED] ttm_tt_populate_populated_ttm
[22:05:57] [PASSED] ttm_tt_unpopulate_basic
[22:05:57] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:05:57] [PASSED] ttm_tt_swapin_basic
[22:05:57] ===================== [PASSED] ttm_tt ======================
[22:05:57] =================== ttm_bo (14 subtests) ===================
[22:05:57] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[22:05:57] [PASSED] Cannot be interrupted and sleeps
[22:05:57] [PASSED] Cannot be interrupted, locks straight away
[22:05:57] [PASSED] Can be interrupted, sleeps
[22:05:57] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:05:57] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:05:57] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:05:57] [PASSED] ttm_bo_reserve_double_resv
[22:05:57] [PASSED] ttm_bo_reserve_interrupted
[22:05:57] [PASSED] ttm_bo_reserve_deadlock
[22:05:57] [PASSED] ttm_bo_unreserve_basic
[22:05:57] [PASSED] ttm_bo_unreserve_pinned
[22:05:57] [PASSED] ttm_bo_unreserve_bulk
[22:05:57] [PASSED] ttm_bo_put_basic
[22:05:57] [PASSED] ttm_bo_put_shared_resv
[22:05:57] [PASSED] ttm_bo_pin_basic
[22:05:57] [PASSED] ttm_bo_pin_unpin_resource
[22:05:57] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:05:57] ===================== [PASSED] ttm_bo ======================
[22:05:57] ============== ttm_bo_validate (21 subtests) ===============
[22:05:57] ============== ttm_bo_init_reserved_sys_man  ===============
[22:05:57] [PASSED] Buffer object for userspace
[22:05:57] [PASSED] Kernel buffer object
[22:05:57] [PASSED] Shared buffer object
[22:05:57] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:05:57] ============== ttm_bo_init_reserved_mock_man  ==============
[22:05:57] [PASSED] Buffer object for userspace
[22:05:57] [PASSED] Kernel buffer object
[22:05:57] [PASSED] Shared buffer object
[22:05:57] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:05:57] [PASSED] ttm_bo_init_reserved_resv
[22:05:57] ================== ttm_bo_validate_basic  ==================
[22:05:57] [PASSED] Buffer object for userspace
[22:05:57] [PASSED] Kernel buffer object
[22:05:57] [PASSED] Shared buffer object
[22:05:57] ============== [PASSED] ttm_bo_validate_basic ==============
[22:05:57] [PASSED] ttm_bo_validate_invalid_placement
[22:05:57] ============= ttm_bo_validate_same_placement  ==============
[22:05:57] [PASSED] System manager
[22:05:57] [PASSED] VRAM manager
[22:05:57] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:05:57] [PASSED] ttm_bo_validate_failed_alloc
[22:05:57] [PASSED] ttm_bo_validate_pinned
[22:05:57] [PASSED] ttm_bo_validate_busy_placement
[22:05:57] ================ ttm_bo_validate_multihop  =================
[22:05:57] [PASSED] Buffer object for userspace
[22:05:57] [PASSED] Kernel buffer object
[22:05:57] [PASSED] Shared buffer object
[22:05:57] ============ [PASSED] ttm_bo_validate_multihop =============
[22:05:57] ========== ttm_bo_validate_no_placement_signaled  ==========
[22:05:57] [PASSED] Buffer object in system domain, no page vector
[22:05:57] [PASSED] Buffer object in system domain with an existing page vector
[22:05:57] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:05:57] ======== ttm_bo_validate_no_placement_not_signaled  ========
[22:05:57] [PASSED] Buffer object for userspace
[22:05:57] [PASSED] Kernel buffer object
[22:05:57] [PASSED] Shared buffer object
[22:05:57] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:05:57] [PASSED] ttm_bo_validate_move_fence_signaled
[22:05:58] ========= ttm_bo_validate_move_fence_not_signaled  =========
[22:05:58] [PASSED] Waits for GPU
[22:05:58] [PASSED] Tries to lock straight away
[22:05:58] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:05:58] [PASSED] ttm_bo_validate_happy_evict
[22:05:58] [PASSED] ttm_bo_validate_all_pinned_evict
[22:05:58] [PASSED] ttm_bo_validate_allowed_only_evict
[22:05:58] [PASSED] ttm_bo_validate_deleted_evict
[22:05:58] [PASSED] ttm_bo_validate_busy_domain_evict
[22:05:58] [PASSED] ttm_bo_validate_evict_gutting
[22:05:58] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:05:58] ================= [PASSED] ttm_bo_validate =================
[22:05:58] ============================================================
[22:05:58] Testing complete. Ran 101 tests: passed: 101
[22:05:58] Elapsed time: 9.751s total, 1.703s configuring, 7.832s building, 0.178s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ 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

* ✓ CI.KUnit: success 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 22:05 ` Patchwork
  0 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-08-27 22:05 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/153588/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:04:34] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:04:39] 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
[22:05:07] Starting KUnit Kernel (1/1)...
[22:05:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:08] ================== guc_buf (11 subtests) ===================
[22:05:08] [PASSED] test_smallest
[22:05:08] [PASSED] test_largest
[22:05:08] [PASSED] test_granular
[22:05:08] [PASSED] test_unique
[22:05:08] [PASSED] test_overlap
[22:05:08] [PASSED] test_reusable
[22:05:08] [PASSED] test_too_big
[22:05:08] [PASSED] test_flush
[22:05:08] [PASSED] test_lookup
[22:05:08] [PASSED] test_data
[22:05:08] [PASSED] test_class
[22:05:08] ===================== [PASSED] guc_buf =====================
[22:05:08] =================== guc_dbm (7 subtests) ===================
[22:05:08] [PASSED] test_empty
[22:05:08] [PASSED] test_default
[22:05:08] ======================== test_size  ========================
[22:05:08] [PASSED] 4
[22:05:08] [PASSED] 8
[22:05:08] [PASSED] 32
[22:05:08] [PASSED] 256
[22:05:08] ==================== [PASSED] test_size ====================
[22:05:08] ======================= test_reuse  ========================
[22:05:08] [PASSED] 4
[22:05:08] [PASSED] 8
[22:05:08] [PASSED] 32
[22:05:08] [PASSED] 256
[22:05:08] =================== [PASSED] test_reuse ====================
[22:05:08] =================== test_range_overlap  ====================
[22:05:08] [PASSED] 4
[22:05:08] [PASSED] 8
[22:05:08] [PASSED] 32
[22:05:08] [PASSED] 256
[22:05:08] =============== [PASSED] test_range_overlap ================
[22:05:08] =================== test_range_compact  ====================
[22:05:08] [PASSED] 4
[22:05:08] [PASSED] 8
[22:05:08] [PASSED] 32
[22:05:08] [PASSED] 256
[22:05:08] =============== [PASSED] test_range_compact ================
[22:05:08] ==================== test_range_spare  =====================
[22:05:08] [PASSED] 4
[22:05:08] [PASSED] 8
[22:05:08] [PASSED] 32
[22:05:08] [PASSED] 256
[22:05:08] ================ [PASSED] test_range_spare =================
[22:05:08] ===================== [PASSED] guc_dbm =====================
[22:05:08] =================== guc_idm (6 subtests) ===================
[22:05:08] [PASSED] bad_init
[22:05:08] [PASSED] no_init
[22:05:08] [PASSED] init_fini
[22:05:08] [PASSED] check_used
[22:05:08] [PASSED] check_quota
[22:05:08] [PASSED] check_all
[22:05:08] ===================== [PASSED] guc_idm =====================
[22:05:08] ================== no_relay (3 subtests) ===================
[22:05:08] [PASSED] xe_drops_guc2pf_if_not_ready
[22:05:08] [PASSED] xe_drops_guc2vf_if_not_ready
[22:05:08] [PASSED] xe_rejects_send_if_not_ready
[22:05:08] ==================== [PASSED] no_relay =====================
[22:05:08] ================== pf_relay (14 subtests) ==================
[22:05:08] [PASSED] pf_rejects_guc2pf_too_short
[22:05:08] [PASSED] pf_rejects_guc2pf_too_long
[22:05:08] [PASSED] pf_rejects_guc2pf_no_payload
[22:05:08] [PASSED] pf_fails_no_payload
[22:05:08] [PASSED] pf_fails_bad_origin
[22:05:08] [PASSED] pf_fails_bad_type
[22:05:08] [PASSED] pf_txn_reports_error
[22:05:08] [PASSED] pf_txn_sends_pf2guc
[22:05:08] [PASSED] pf_sends_pf2guc
[22:05:08] [SKIPPED] pf_loopback_nop
[22:05:08] [SKIPPED] pf_loopback_echo
[22:05:08] [SKIPPED] pf_loopback_fail
[22:05:08] [SKIPPED] pf_loopback_busy
[22:05:08] [SKIPPED] pf_loopback_retry
[22:05:08] ==================== [PASSED] pf_relay =====================
[22:05:08] ================== vf_relay (3 subtests) ===================
[22:05:08] [PASSED] vf_rejects_guc2vf_too_short
[22:05:08] [PASSED] vf_rejects_guc2vf_too_long
[22:05:08] [PASSED] vf_rejects_guc2vf_no_payload
[22:05:08] ==================== [PASSED] vf_relay =====================
[22:05:08] ===================== lmtt (1 subtest) =====================
[22:05:08] ======================== test_ops  =========================
[22:05:08] [PASSED] 2-level
[22:05:08] [PASSED] multi-level
[22:05:08] ==================== [PASSED] test_ops =====================
[22:05:08] ====================== [PASSED] lmtt =======================
[22:05:08] ================= pf_service (11 subtests) =================
[22:05:08] [PASSED] pf_negotiate_any
[22:05:08] [PASSED] pf_negotiate_base_match
[22:05:08] [PASSED] pf_negotiate_base_newer
[22:05:08] [PASSED] pf_negotiate_base_next
[22:05:08] [SKIPPED] pf_negotiate_base_older
[22:05:08] [PASSED] pf_negotiate_base_prev
[22:05:08] [PASSED] pf_negotiate_latest_match
[22:05:08] [PASSED] pf_negotiate_latest_newer
[22:05:08] [PASSED] pf_negotiate_latest_next
[22:05:08] [SKIPPED] pf_negotiate_latest_older
[22:05:08] [SKIPPED] pf_negotiate_latest_prev
[22:05:08] =================== [PASSED] pf_service ====================
[22:05:08] =================== xe_mocs (2 subtests) ===================
[22:05:08] ================ xe_live_mocs_kernel_kunit  ================
[22:05:08] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:05:08] ================ xe_live_mocs_reset_kunit  =================
[22:05:08] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:05:08] ==================== [SKIPPED] xe_mocs =====================
[22:05:08] ================= xe_migrate (2 subtests) ==================
[22:05:08] ================= xe_migrate_sanity_kunit  =================
[22:05:08] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:05:08] ================== xe_validate_ccs_kunit  ==================
[22:05:08] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:05:08] =================== [SKIPPED] xe_migrate ===================
[22:05:08] ================== xe_dma_buf (1 subtest) ==================
[22:05:08] ==================== xe_dma_buf_kunit  =====================
[22:05:08] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:05:08] =================== [SKIPPED] xe_dma_buf ===================
[22:05:08] ================= xe_bo_shrink (1 subtest) =================
[22:05:08] =================== xe_bo_shrink_kunit  ====================
[22:05:08] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:05:08] ================== [SKIPPED] xe_bo_shrink ==================
[22:05:08] ==================== xe_bo (2 subtests) ====================
[22:05:08] ================== xe_ccs_migrate_kunit  ===================
[22:05:08] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:05:08] ==================== xe_bo_evict_kunit  ====================
[22:05:08] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:05:08] ===================== [SKIPPED] xe_bo ======================
[22:05:08] ==================== args (11 subtests) ====================
[22:05:08] [PASSED] count_args_test
[22:05:08] [PASSED] call_args_example
[22:05:08] [PASSED] call_args_test
[22:05:08] [PASSED] drop_first_arg_example
[22:05:08] [PASSED] drop_first_arg_test
[22:05:08] [PASSED] first_arg_example
[22:05:08] [PASSED] first_arg_test
[22:05:08] [PASSED] last_arg_example
[22:05:08] [PASSED] last_arg_test
[22:05:08] [PASSED] pick_arg_example
[22:05:08] [PASSED] sep_comma_example
[22:05:08] ====================== [PASSED] args =======================
[22:05:08] =================== xe_pci (3 subtests) ====================
[22:05:08] ==================== check_graphics_ip  ====================
[22:05:08] [PASSED] 12.70 Xe_LPG
[22:05:08] [PASSED] 12.71 Xe_LPG
[22:05:08] [PASSED] 12.74 Xe_LPG+
[22:05:08] [PASSED] 20.01 Xe2_HPG
[22:05:08] [PASSED] 20.02 Xe2_HPG
[22:05:08] [PASSED] 20.04 Xe2_LPG
[22:05:08] [PASSED] 30.00 Xe3_LPG
[22:05:08] [PASSED] 30.01 Xe3_LPG
[22:05:08] [PASSED] 30.03 Xe3_LPG
[22:05:08] ================ [PASSED] check_graphics_ip ================
[22:05:08] ===================== check_media_ip  ======================
[22:05:08] [PASSED] 13.00 Xe_LPM+
[22:05:08] [PASSED] 13.01 Xe2_HPM
[22:05:08] [PASSED] 20.00 Xe2_LPM
[22:05:08] [PASSED] 30.00 Xe3_LPM
[22:05:08] [PASSED] 30.02 Xe3_LPM
[22:05:08] ================= [PASSED] check_media_ip ==================
[22:05:08] ================= check_platform_gt_count  =================
[22:05:08] [PASSED] 0x9A60 (TIGERLAKE)
[22:05:08] [PASSED] 0x9A68 (TIGERLAKE)
[22:05:08] [PASSED] 0x9A70 (TIGERLAKE)
[22:05:08] [PASSED] 0x9A40 (TIGERLAKE)
[22:05:08] [PASSED] 0x9A49 (TIGERLAKE)
[22:05:08] [PASSED] 0x9A59 (TIGERLAKE)
[22:05:08] [PASSED] 0x9A78 (TIGERLAKE)
[22:05:08] [PASSED] 0x9AC0 (TIGERLAKE)
[22:05:08] [PASSED] 0x9AC9 (TIGERLAKE)
[22:05:08] [PASSED] 0x9AD9 (TIGERLAKE)
[22:05:08] [PASSED] 0x9AF8 (TIGERLAKE)
[22:05:08] [PASSED] 0x4C80 (ROCKETLAKE)
[22:05:08] [PASSED] 0x4C8A (ROCKETLAKE)
[22:05:08] [PASSED] 0x4C8B (ROCKETLAKE)
[22:05:08] [PASSED] 0x4C8C (ROCKETLAKE)
[22:05:08] [PASSED] 0x4C90 (ROCKETLAKE)
[22:05:08] [PASSED] 0x4C9A (ROCKETLAKE)
[22:05:08] [PASSED] 0x4680 (ALDERLAKE_S)
[22:05:08] [PASSED] 0x4682 (ALDERLAKE_S)
[22:05:08] [PASSED] 0x4688 (ALDERLAKE_S)
[22:05:08] [PASSED] 0x468A (ALDERLAKE_S)
[22:05:08] [PASSED] 0x468B (ALDERLAKE_S)
[22:05:08] [PASSED] 0x4690 (ALDERLAKE_S)
[22:05:08] [PASSED] 0x4692 (ALDERLAKE_S)
[22:05:08] [PASSED] 0x4693 (ALDERLAKE_S)
[22:05:08] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46AA (ALDERLAKE_P)
[22:05:08] [PASSED] 0x462A (ALDERLAKE_P)
[22:05:08] [PASSED] 0x4626 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x4628 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:05:08] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:05:08] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:05:08] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:05:08] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:05:08] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:05:08] [PASSED] 0xA721 (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA720 (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:05:08] [PASSED] 0xA780 (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA781 (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA782 (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA783 (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA788 (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA789 (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA78A (ALDERLAKE_S)
[22:05:08] [PASSED] 0xA78B (ALDERLAKE_S)
[22:05:08] [PASSED] 0x4905 (DG1)
[22:05:08] [PASSED] 0x4906 (DG1)
[22:05:08] [PASSED] 0x4907 (DG1)
[22:05:08] [PASSED] 0x4908 (DG1)
[22:05:08] [PASSED] 0x4909 (DG1)
[22:05:08] [PASSED] 0x56C0 (DG2)
[22:05:08] [PASSED] 0x56C2 (DG2)
[22:05:08] [PASSED] 0x56C1 (DG2)
[22:05:08] [PASSED] 0x7D51 (METEORLAKE)
[22:05:08] [PASSED] 0x7DD1 (METEORLAKE)
[22:05:08] [PASSED] 0x7D41 (METEORLAKE)
[22:05:08] [PASSED] 0x7D67 (METEORLAKE)
[22:05:08] [PASSED] 0xB640 (METEORLAKE)
[22:05:08] [PASSED] 0x56A0 (DG2)
[22:05:08] [PASSED] 0x56A1 (DG2)
[22:05:08] [PASSED] 0x56A2 (DG2)
[22:05:08] [PASSED] 0x56BE (DG2)
[22:05:08] [PASSED] 0x56BF (DG2)
[22:05:08] [PASSED] 0x5690 (DG2)
[22:05:08] [PASSED] 0x5691 (DG2)
[22:05:08] [PASSED] 0x5692 (DG2)
[22:05:08] [PASSED] 0x56A5 (DG2)
[22:05:08] [PASSED] 0x56A6 (DG2)
[22:05:08] [PASSED] 0x56B0 (DG2)
[22:05:08] [PASSED] 0x56B1 (DG2)
[22:05:08] [PASSED] 0x56BA (DG2)
[22:05:08] [PASSED] 0x56BB (DG2)
[22:05:08] [PASSED] 0x56BC (DG2)
[22:05:08] [PASSED] 0x56BD (DG2)
[22:05:08] [PASSED] 0x5693 (DG2)
[22:05:08] [PASSED] 0x5694 (DG2)
[22:05:08] [PASSED] 0x5695 (DG2)
[22:05:08] [PASSED] 0x56A3 (DG2)
[22:05:08] [PASSED] 0x56A4 (DG2)
[22:05:08] [PASSED] 0x56B2 (DG2)
[22:05:08] [PASSED] 0x56B3 (DG2)
[22:05:08] [PASSED] 0x5696 (DG2)
[22:05:08] [PASSED] 0x5697 (DG2)
[22:05:08] [PASSED] 0xB69 (PVC)
[22:05:08] [PASSED] 0xB6E (PVC)
[22:05:08] [PASSED] 0xBD4 (PVC)
[22:05:08] [PASSED] 0xBD5 (PVC)
[22:05:08] [PASSED] 0xBD6 (PVC)
[22:05:08] [PASSED] 0xBD7 (PVC)
[22:05:08] [PASSED] 0xBD8 (PVC)
[22:05:08] [PASSED] 0xBD9 (PVC)
[22:05:08] [PASSED] 0xBDA (PVC)
[22:05:08] [PASSED] 0xBDB (PVC)
[22:05:08] [PASSED] 0xBE0 (PVC)
[22:05:08] [PASSED] 0xBE1 (PVC)
[22:05:08] [PASSED] 0xBE5 (PVC)
[22:05:08] [PASSED] 0x7D40 (METEORLAKE)
[22:05:08] [PASSED] 0x7D45 (METEORLAKE)
[22:05:08] [PASSED] 0x7D55 (METEORLAKE)
[22:05:08] [PASSED] 0x7D60 (METEORLAKE)
[22:05:08] [PASSED] 0x7DD5 (METEORLAKE)
[22:05:08] [PASSED] 0x6420 (LUNARLAKE)
[22:05:08] [PASSED] 0x64A0 (LUNARLAKE)
[22:05:08] [PASSED] 0x64B0 (LUNARLAKE)
[22:05:08] [PASSED] 0xE202 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE209 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE20B (BATTLEMAGE)
[22:05:08] [PASSED] 0xE20C (BATTLEMAGE)
[22:05:08] [PASSED] 0xE20D (BATTLEMAGE)
[22:05:08] [PASSED] 0xE210 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE211 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE212 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE216 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE220 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE221 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE222 (BATTLEMAGE)
[22:05:08] [PASSED] 0xE223 (BATTLEMAGE)
[22:05:08] [PASSED] 0xB080 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB081 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB082 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB083 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB084 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB085 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB086 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB087 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB08F (PANTHERLAKE)
[22:05:08] [PASSED] 0xB090 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:05:08] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:05:08] [PASSED] 0xFD80 (PANTHERLAKE)
[22:05:08] [PASSED] 0xFD81 (PANTHERLAKE)
[22:05:08] ============= [PASSED] check_platform_gt_count =============
[22:05:08] ===================== [PASSED] xe_pci ======================
[22:05:08] =================== xe_rtp (2 subtests) ====================
[22:05:08] =============== xe_rtp_process_to_sr_tests  ================
[22:05:08] [PASSED] coalesce-same-reg
[22:05:08] [PASSED] no-match-no-add
[22:05:08] [PASSED] match-or
[22:05:08] [PASSED] match-or-xfail
[22:05:08] [PASSED] no-match-no-add-multiple-rules
[22:05:08] [PASSED] two-regs-two-entries
[22:05:08] [PASSED] clr-one-set-other
[22:05:08] [PASSED] set-field
[22:05:08] [PASSED] conflict-duplicate
[22:05:08] [PASSED] conflict-not-disjoint
[22:05:08] [PASSED] conflict-reg-type
[22:05:08] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:05:08] ================== xe_rtp_process_tests  ===================
[22:05:08] [PASSED] active1
[22:05:08] [PASSED] active2
[22:05:08] [PASSED] active-inactive
[22:05:08] [PASSED] inactive-active
[22:05:08] [PASSED] inactive-1st_or_active-inactive
[22:05:08] [PASSED] inactive-2nd_or_active-inactive
[22:05:08] [PASSED] inactive-last_or_active-inactive
[22:05:08] [PASSED] inactive-no_or_active-inactive
[22:05:08] ============== [PASSED] xe_rtp_process_tests ===============
[22:05:08] ===================== [PASSED] xe_rtp ======================
[22:05:08] ==================== xe_wa (1 subtest) =====================
[22:05:08] ======================== xe_wa_gt  =========================
[22:05:08] [PASSED] TIGERLAKE (B0)
[22:05:08] [PASSED] DG1 (A0)
[22:05:08] [PASSED] DG1 (B0)
[22:05:08] [PASSED] ALDERLAKE_S (A0)
[22:05:08] [PASSED] ALDERLAKE_S (B0)
[22:05:08] [PASSED] ALDERLAKE_S (C0)
[22:05:08] [PASSED] ALDERLAKE_S (D0)
[22:05:08] [PASSED] ALDERLAKE_P (A0)
[22:05:08] [PASSED] ALDERLAKE_P (B0)
[22:05:08] [PASSED] ALDERLAKE_P (C0)
[22:05:08] [PASSED] ALDERLAKE_S_RPLS (D0)
[22:05:08] [PASSED] ALDERLAKE_P_RPLU (E0)
[22:05:08] [PASSED] DG2_G10 (C0)
[22:05:08] [PASSED] DG2_G11 (B1)
[22:05:08] [PASSED] DG2_G12 (A1)
[22:05:08] [PASSED] METEORLAKE (g:A0, m:A0)
[22:05:08] [PASSED] METEORLAKE (g:A0, m:A0)
[22:05:08] [PASSED] METEORLAKE (g:A0, m:A0)
[22:05:08] [PASSED] LUNARLAKE (g:A0, m:A0)
[22:05:08] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[22:05:08] [PASSED] BATTLEMAGE (g:A0, m:A1)
[22:05:08] [PASSED] PANTHERLAKE (g:A0, m:A0)
[22:05:08] ==================== [PASSED] xe_wa_gt =====================
[22:05:08] ====================== [PASSED] xe_wa ======================
[22:05:08] ============================================================
[22:05:08] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[22:05:08] Elapsed time: 33.402s total, 4.276s configuring, 28.760s building, 0.326s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:05:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:05: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
[22:05:32] Starting KUnit Kernel (1/1)...
[22:05:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:33] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:05:33] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:05:33] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:05:33] =========== drm_validate_clone_mode (2 subtests) ===========
[22:05:33] ============== drm_test_check_in_clone_mode  ===============
[22:05:33] [PASSED] in_clone_mode
[22:05:33] [PASSED] not_in_clone_mode
[22:05:33] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:05:33] =============== drm_test_check_valid_clones  ===============
[22:05:33] [PASSED] not_in_clone_mode
[22:05:33] [PASSED] valid_clone
[22:05:33] [PASSED] invalid_clone
[22:05:33] =========== [PASSED] drm_test_check_valid_clones ===========
[22:05:33] ============= [PASSED] drm_validate_clone_mode =============
[22:05:33] ============= drm_validate_modeset (1 subtest) =============
[22:05:33] [PASSED] drm_test_check_connector_changed_modeset
[22:05:33] ============== [PASSED] drm_validate_modeset ===============
[22:05:33] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:05:33] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:05:33] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:05:33] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:05:33] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:05:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:05:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:05:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:05:33] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:05:33] ============== drm_bridge_alloc (2 subtests) ===============
[22:05:33] [PASSED] drm_test_drm_bridge_alloc_basic
[22:05:33] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:05:33] ================ [PASSED] drm_bridge_alloc =================
[22:05:33] ================== drm_buddy (7 subtests) ==================
[22:05:33] [PASSED] drm_test_buddy_alloc_limit
[22:05:33] [PASSED] drm_test_buddy_alloc_optimistic
[22:05:33] [PASSED] drm_test_buddy_alloc_pessimistic
[22:05:33] [PASSED] drm_test_buddy_alloc_pathological
[22:05:33] [PASSED] drm_test_buddy_alloc_contiguous
[22:05:33] [PASSED] drm_test_buddy_alloc_clear
[22:05:33] [PASSED] drm_test_buddy_alloc_range_bias
[22:05:33] ==================== [PASSED] drm_buddy ====================
[22:05:33] ============= drm_cmdline_parser (40 subtests) =============
[22:05:33] [PASSED] drm_test_cmdline_force_d_only
[22:05:33] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:05:33] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:05:33] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:05:33] [PASSED] drm_test_cmdline_force_e_only
[22:05:33] [PASSED] drm_test_cmdline_res
[22:05:33] [PASSED] drm_test_cmdline_res_vesa
[22:05:33] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:05:33] [PASSED] drm_test_cmdline_res_rblank
[22:05:33] [PASSED] drm_test_cmdline_res_bpp
[22:05:33] [PASSED] drm_test_cmdline_res_refresh
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:05:33] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:05:33] [PASSED] drm_test_cmdline_res_margins_force_on
[22:05:33] [PASSED] drm_test_cmdline_res_vesa_margins
[22:05:33] [PASSED] drm_test_cmdline_name
[22:05:33] [PASSED] drm_test_cmdline_name_bpp
[22:05:33] [PASSED] drm_test_cmdline_name_option
[22:05:33] [PASSED] drm_test_cmdline_name_bpp_option
[22:05:33] [PASSED] drm_test_cmdline_rotate_0
[22:05:33] [PASSED] drm_test_cmdline_rotate_90
[22:05:33] [PASSED] drm_test_cmdline_rotate_180
[22:05:33] [PASSED] drm_test_cmdline_rotate_270
[22:05:33] [PASSED] drm_test_cmdline_hmirror
[22:05:33] [PASSED] drm_test_cmdline_vmirror
[22:05:33] [PASSED] drm_test_cmdline_margin_options
[22:05:33] [PASSED] drm_test_cmdline_multiple_options
[22:05:33] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:05:33] [PASSED] drm_test_cmdline_extra_and_option
[22:05:33] [PASSED] drm_test_cmdline_freestanding_options
[22:05:33] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:05:33] [PASSED] drm_test_cmdline_panel_orientation
[22:05:33] ================ drm_test_cmdline_invalid  =================
[22:05:33] [PASSED] margin_only
[22:05:33] [PASSED] interlace_only
[22:05:33] [PASSED] res_missing_x
[22:05:33] [PASSED] res_missing_y
[22:05:33] [PASSED] res_bad_y
[22:05:33] [PASSED] res_missing_y_bpp
[22:05:33] [PASSED] res_bad_bpp
[22:05:33] [PASSED] res_bad_refresh
[22:05:33] [PASSED] res_bpp_refresh_force_on_off
[22:05:33] [PASSED] res_invalid_mode
[22:05:33] [PASSED] res_bpp_wrong_place_mode
[22:05:33] [PASSED] name_bpp_refresh
[22:05:33] [PASSED] name_refresh
[22:05:33] [PASSED] name_refresh_wrong_mode
[22:05:33] [PASSED] name_refresh_invalid_mode
[22:05:33] [PASSED] rotate_multiple
[22:05:33] [PASSED] rotate_invalid_val
[22:05:33] [PASSED] rotate_truncated
[22:05:33] [PASSED] invalid_option
[22:05:33] [PASSED] invalid_tv_option
[22:05:33] [PASSED] truncated_tv_option
[22:05:33] ============ [PASSED] drm_test_cmdline_invalid =============
[22:05:33] =============== drm_test_cmdline_tv_options  ===============
[22:05:33] [PASSED] NTSC
[22:05:33] [PASSED] NTSC_443
[22:05:33] [PASSED] NTSC_J
[22:05:33] [PASSED] PAL
[22:05:33] [PASSED] PAL_M
[22:05:33] [PASSED] PAL_N
[22:05:33] [PASSED] SECAM
[22:05:33] [PASSED] MONO_525
[22:05:33] [PASSED] MONO_625
[22:05:33] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:05:33] =============== [PASSED] drm_cmdline_parser ================
[22:05:33] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:05:33] [PASSED] drm_test_connector_hdmi_init_valid
[22:05:33] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:05:33] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:05:33] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:05:33] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:05:33] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:05:33] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:05:33] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:05:33] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[22:05:33] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:05:33] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:05:33] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:05:33] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:05:33] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:05:33] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:05:33] [PASSED] drm_test_connector_hdmi_init_null_product
[22:05:33] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:05:33] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:05:33] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:05:33] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:05:33] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:05:33] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:05:33] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:05:33] ========= drm_test_connector_hdmi_init_type_valid  =========
[22:05:33] [PASSED] HDMI-A
[22:05:33] [PASSED] HDMI-B
[22:05:33] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:05:33] ======== drm_test_connector_hdmi_init_type_invalid  ========
[22:05:33] [PASSED] Unknown
[22:05:33] [PASSED] VGA
[22:05:33] [PASSED] DVI-I
[22:05:33] [PASSED] DVI-D
[22:05:33] [PASSED] DVI-A
[22:05:33] [PASSED] Composite
[22:05:33] [PASSED] SVIDEO
[22:05:33] [PASSED] LVDS
[22:05:33] [PASSED] Component
[22:05:33] [PASSED] DIN
[22:05:33] [PASSED] DP
[22:05:33] [PASSED] TV
[22:05:33] [PASSED] eDP
[22:05:33] [PASSED] Virtual
[22:05:33] [PASSED] DSI
[22:05:33] [PASSED] DPI
[22:05:33] [PASSED] Writeback
[22:05:33] [PASSED] SPI
[22:05:33] [PASSED] USB
[22:05:33] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:05:33] ============ [PASSED] drmm_connector_hdmi_init =============
[22:05:33] ============= drmm_connector_init (3 subtests) =============
[22:05:33] [PASSED] drm_test_drmm_connector_init
[22:05:33] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:05:33] ========= drm_test_drmm_connector_init_type_valid  =========
[22:05:33] [PASSED] Unknown
[22:05:33] [PASSED] VGA
[22:05:33] [PASSED] DVI-I
[22:05:33] [PASSED] DVI-D
[22:05:33] [PASSED] DVI-A
[22:05:33] [PASSED] Composite
[22:05:33] [PASSED] SVIDEO
[22:05:33] [PASSED] LVDS
[22:05:33] [PASSED] Component
[22:05:33] [PASSED] DIN
[22:05:33] [PASSED] DP
[22:05:33] [PASSED] HDMI-A
[22:05:33] [PASSED] HDMI-B
[22:05:33] [PASSED] TV
[22:05:33] [PASSED] eDP
[22:05:33] [PASSED] Virtual
[22:05:33] [PASSED] DSI
[22:05:33] [PASSED] DPI
[22:05:33] [PASSED] Writeback
[22:05:33] [PASSED] SPI
[22:05:33] [PASSED] USB
[22:05:33] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:05:33] =============== [PASSED] drmm_connector_init ===============
[22:05:33] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_init
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:05:33] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[22:05:33] [PASSED] Unknown
[22:05:33] [PASSED] VGA
[22:05:33] [PASSED] DVI-I
[22:05:33] [PASSED] DVI-D
[22:05:33] [PASSED] DVI-A
[22:05:33] [PASSED] Composite
[22:05:33] [PASSED] SVIDEO
[22:05:33] [PASSED] LVDS
[22:05:33] [PASSED] Component
[22:05:33] [PASSED] DIN
[22:05:33] [PASSED] DP
[22:05:33] [PASSED] HDMI-A
[22:05:33] [PASSED] HDMI-B
[22:05:33] [PASSED] TV
[22:05:33] [PASSED] eDP
[22:05:33] [PASSED] Virtual
[22:05:33] [PASSED] DSI
[22:05:33] [PASSED] DPI
[22:05:33] [PASSED] Writeback
[22:05:33] [PASSED] SPI
[22:05:33] [PASSED] USB
[22:05:33] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:05:33] ======== drm_test_drm_connector_dynamic_init_name  =========
[22:05:33] [PASSED] Unknown
[22:05:33] [PASSED] VGA
[22:05:33] [PASSED] DVI-I
[22:05:33] [PASSED] DVI-D
[22:05:33] [PASSED] DVI-A
[22:05:33] [PASSED] Composite
[22:05:33] [PASSED] SVIDEO
[22:05:33] [PASSED] LVDS
[22:05:33] [PASSED] Component
[22:05:33] [PASSED] DIN
[22:05:33] [PASSED] DP
[22:05:33] [PASSED] HDMI-A
[22:05:33] [PASSED] HDMI-B
[22:05:33] [PASSED] TV
[22:05:33] [PASSED] eDP
[22:05:33] [PASSED] Virtual
[22:05:33] [PASSED] DSI
[22:05:33] [PASSED] DPI
[22:05:33] [PASSED] Writeback
[22:05:33] [PASSED] SPI
[22:05:33] [PASSED] USB
[22:05:33] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:05:33] =========== [PASSED] drm_connector_dynamic_init ============
[22:05:33] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:05:33] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:05:33] ======= drm_connector_dynamic_register (7 subtests) ========
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:05:33] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:05:33] ========= [PASSED] drm_connector_dynamic_register ==========
[22:05:33] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:05:33] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:05:33] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:05:33] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:05:33] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:05:33] ========== drm_test_get_tv_mode_from_name_valid  ===========
[22:05:33] [PASSED] NTSC
[22:05:33] [PASSED] NTSC-443
[22:05:33] [PASSED] NTSC-J
[22:05:33] [PASSED] PAL
[22:05:33] [PASSED] PAL-M
[22:05:33] [PASSED] PAL-N
[22:05:33] [PASSED] SECAM
[22:05:33] [PASSED] Mono
[22:05:33] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:05:33] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:05:33] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:05:33] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:05:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:05:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:05:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:05:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:05:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:05:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:05:33] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[22:05:33] [PASSED] VIC 96
[22:05:33] [PASSED] VIC 97
[22:05:33] [PASSED] VIC 101
[22:05:33] [PASSED] VIC 102
[22:05:33] [PASSED] VIC 106
[22:05:33] [PASSED] VIC 107
[22:05:33] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:05:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:05:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:05:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:05:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:05:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:05:33] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:05:33] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:05:33] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[22:05:33] [PASSED] Automatic
[22:05:33] [PASSED] Full
[22:05:33] [PASSED] Limited 16:235
[22:05:33] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:05:33] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:05:33] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:05:33] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:05:33] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[22:05:33] [PASSED] RGB
[22:05:33] [PASSED] YUV 4:2:0
[22:05:33] [PASSED] YUV 4:2:2
[22:05:33] [PASSED] YUV 4:4:4
[22:05:33] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:05:33] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:05:33] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:05:33] ============= drm_damage_helper (21 subtests) ==============
[22:05:33] [PASSED] drm_test_damage_iter_no_damage
[22:05:33] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:05:33] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:05:33] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:05:33] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:05:33] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:05:33] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:05:33] [PASSED] drm_test_damage_iter_simple_damage
[22:05:33] [PASSED] drm_test_damage_iter_single_damage
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:05:33] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:05:33] [PASSED] drm_test_damage_iter_damage
[22:05:33] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:05:33] [PASSED] drm_test_damage_iter_damage_one_outside
[22:05:33] [PASSED] drm_test_damage_iter_damage_src_moved
[22:05:33] [PASSED] drm_test_damage_iter_damage_not_visible
[22:05:33] ================ [PASSED] drm_damage_helper ================
[22:05:33] ============== drm_dp_mst_helper (3 subtests) ==============
[22:05:33] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[22:05:33] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:05:33] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:05:33] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:05:33] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:05:33] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:05:33] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:05:33] ============== drm_test_dp_mst_calc_pbn_div  ===============
[22:05:33] [PASSED] Link rate 2000000 lane count 4
[22:05:33] [PASSED] Link rate 2000000 lane count 2
[22:05:33] [PASSED] Link rate 2000000 lane count 1
[22:05:33] [PASSED] Link rate 1350000 lane count 4
[22:05:33] [PASSED] Link rate 1350000 lane count 2
[22:05:33] [PASSED] Link rate 1350000 lane count 1
[22:05:33] [PASSED] Link rate 1000000 lane count 4
[22:05:33] [PASSED] Link rate 1000000 lane count 2
[22:05:33] [PASSED] Link rate 1000000 lane count 1
[22:05:33] [PASSED] Link rate 810000 lane count 4
[22:05:33] [PASSED] Link rate 810000 lane count 2
[22:05:33] [PASSED] Link rate 810000 lane count 1
[22:05:33] [PASSED] Link rate 540000 lane count 4
[22:05:33] [PASSED] Link rate 540000 lane count 2
[22:05:33] [PASSED] Link rate 540000 lane count 1
[22:05:33] [PASSED] Link rate 270000 lane count 4
[22:05:33] [PASSED] Link rate 270000 lane count 2
[22:05:33] [PASSED] Link rate 270000 lane count 1
[22:05:33] [PASSED] Link rate 162000 lane count 4
[22:05:33] [PASSED] Link rate 162000 lane count 2
[22:05:33] [PASSED] Link rate 162000 lane count 1
[22:05:33] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:05:33] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[22:05:33] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:05:33] [PASSED] DP_POWER_UP_PHY with port number
[22:05:33] [PASSED] DP_POWER_DOWN_PHY with port number
[22:05:33] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:05:33] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:05:33] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:05:33] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:05:33] [PASSED] DP_QUERY_PAYLOAD with port number
[22:05:33] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:05:33] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:05:33] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:05:33] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:05:33] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:05:33] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:05:33] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:05:33] [PASSED] DP_REMOTE_I2C_READ with port number
[22:05:33] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:05:33] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:05:33] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:05:33] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:05:33] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:05:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:05:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:05:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:05:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:05:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:05:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:05:33] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:05:33] ================ [PASSED] drm_dp_mst_helper ================
[22:05:33] ================== drm_exec (7 subtests) ===================
[22:05:33] [PASSED] sanitycheck
[22:05:33] [PASSED] test_lock
[22:05:33] [PASSED] test_lock_unlock
[22:05:33] [PASSED] test_duplicates
[22:05:33] [PASSED] test_prepare
[22:05:33] [PASSED] test_prepare_array
[22:05:33] [PASSED] test_multiple_loops
[22:05:33] ==================== [PASSED] drm_exec =====================
[22:05:33] =========== drm_format_helper_test (17 subtests) ===========
[22:05:33] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:05:33] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:05:33] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:05:33] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:05:33] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:05:33] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:05:33] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:05:33] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:05:33] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:05:33] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:05:33] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:05:33] ============== drm_test_fb_xrgb8888_to_mono  ===============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:05:33] ==================== drm_test_fb_swab  =====================
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ================ [PASSED] drm_test_fb_swab =================
[22:05:33] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:05:33] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[22:05:33] [PASSED] single_pixel_source_buffer
[22:05:33] [PASSED] single_pixel_clip_rectangle
[22:05:33] [PASSED] well_known_colors
[22:05:33] [PASSED] destination_pitch
[22:05:33] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:05:33] ================= drm_test_fb_clip_offset  =================
[22:05:33] [PASSED] pass through
[22:05:33] [PASSED] horizontal offset
[22:05:33] [PASSED] vertical offset
[22:05:33] [PASSED] horizontal and vertical offset
[22:05:33] [PASSED] horizontal offset (custom pitch)
[22:05:33] [PASSED] vertical offset (custom pitch)
[22:05:33] [PASSED] horizontal and vertical offset (custom pitch)
[22:05:33] ============= [PASSED] drm_test_fb_clip_offset =============
[22:05:33] =================== drm_test_fb_memcpy  ====================
[22:05:33] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:05:33] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:05:33] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:05:33] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:05:33] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:05:33] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:05:33] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:05:33] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:05:33] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:05:33] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:05:33] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:05:33] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:05:33] =============== [PASSED] drm_test_fb_memcpy ================
[22:05:33] ============= [PASSED] drm_format_helper_test ==============
[22:05:33] ================= drm_format (18 subtests) =================
[22:05:33] [PASSED] drm_test_format_block_width_invalid
[22:05:33] [PASSED] drm_test_format_block_width_one_plane
[22:05:33] [PASSED] drm_test_format_block_width_two_plane
[22:05:33] [PASSED] drm_test_format_block_width_three_plane
[22:05:33] [PASSED] drm_test_format_block_width_tiled
[22:05:33] [PASSED] drm_test_format_block_height_invalid
[22:05:33] [PASSED] drm_test_format_block_height_one_plane
[22:05:33] [PASSED] drm_test_format_block_height_two_plane
[22:05:33] [PASSED] drm_test_format_block_height_three_plane
[22:05:33] [PASSED] drm_test_format_block_height_tiled
[22:05:33] [PASSED] drm_test_format_min_pitch_invalid
[22:05:33] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:05:33] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:05:33] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:05:33] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:05:33] [PASSED] drm_test_format_min_pitch_two_plane
[22:05:33] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:05:33] [PASSED] drm_test_format_min_pitch_tiled
[22:05:33] =================== [PASSED] drm_format ====================
[22:05:33] ============== drm_framebuffer (10 subtests) ===============
[22:05:33] ========== drm_test_framebuffer_check_src_coords  ==========
[22:05:33] [PASSED] Success: source fits into fb
[22:05:33] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:05:33] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:05:33] [PASSED] Fail: overflowing fb with source width
[22:05:33] [PASSED] Fail: overflowing fb with source height
[22:05:33] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:05:33] [PASSED] drm_test_framebuffer_cleanup
[22:05:33] =============== drm_test_framebuffer_create  ===============
[22:05:33] [PASSED] ABGR8888 normal sizes
[22:05:33] [PASSED] ABGR8888 max sizes
[22:05:33] [PASSED] ABGR8888 pitch greater than min required
[22:05:33] [PASSED] ABGR8888 pitch less than min required
[22:05:33] [PASSED] ABGR8888 Invalid width
[22:05:33] [PASSED] ABGR8888 Invalid buffer handle
[22:05:33] [PASSED] No pixel format
[22:05:33] [PASSED] ABGR8888 Width 0
[22:05:33] [PASSED] ABGR8888 Height 0
[22:05:33] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:05:33] [PASSED] ABGR8888 Large buffer offset
[22:05:33] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:05:33] [PASSED] ABGR8888 Invalid flag
[22:05:33] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:05:33] [PASSED] ABGR8888 Valid buffer modifier
[22:05:33] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:05:33] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] NV12 Normal sizes
[22:05:33] [PASSED] NV12 Max sizes
[22:05:33] [PASSED] NV12 Invalid pitch
[22:05:33] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:05:33] [PASSED] NV12 different  modifier per-plane
[22:05:33] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:05:33] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] NV12 Modifier for inexistent plane
[22:05:33] [PASSED] NV12 Handle for inexistent plane
[22:05:33] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:05:33] [PASSED] YVU420 Normal sizes
[22:05:33] [PASSED] YVU420 Max sizes
[22:05:33] [PASSED] YVU420 Invalid pitch
[22:05:33] [PASSED] YVU420 Different pitches
[22:05:33] [PASSED] YVU420 Different buffer offsets/pitches
[22:05:33] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:05:33] [PASSED] YVU420 Valid modifier
[22:05:33] [PASSED] YVU420 Different modifiers per plane
[22:05:33] [PASSED] YVU420 Modifier for inexistent plane
[22:05:33] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:05:33] [PASSED] X0L2 Normal sizes
[22:05:33] [PASSED] X0L2 Max sizes
[22:05:33] [PASSED] X0L2 Invalid pitch
[22:05:33] [PASSED] X0L2 Pitch greater than minimum required
[22:05:33] [PASSED] X0L2 Handle for inexistent plane
[22:05:33] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:05:33] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:05:33] [PASSED] X0L2 Valid modifier
[22:05:33] [PASSED] X0L2 Modifier for inexistent plane
[22:05:33] =========== [PASSED] drm_test_framebuffer_create ===========
[22:05:33] [PASSED] drm_test_framebuffer_free
[22:05:33] [PASSED] drm_test_framebuffer_init
[22:05:33] [PASSED] drm_test_framebuffer_init_bad_format
[22:05:33] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:05:33] [PASSED] drm_test_framebuffer_lookup
[22:05:33] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:05:33] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:05:33] ================= [PASSED] drm_framebuffer =================
[22:05:33] ================ drm_gem_shmem (8 subtests) ================
[22:05:33] [PASSED] drm_gem_shmem_test_obj_create
[22:05:33] [PASSED] drm_gem_shmem_test_obj_create_private
[22:05:33] [PASSED] drm_gem_shmem_test_pin_pages
[22:05:33] [PASSED] drm_gem_shmem_test_vmap
[22:05:33] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:05:33] [PASSED] drm_gem_shmem_test_get_sg_table
[22:05:33] [PASSED] drm_gem_shmem_test_madvise
[22:05:33] [PASSED] drm_gem_shmem_test_purge
[22:05:33] ================== [PASSED] drm_gem_shmem ==================
[22:05:33] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:05:33] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[22:05:33] [PASSED] Automatic
[22:05:33] [PASSED] Full
[22:05:33] [PASSED] Limited 16:235
[22:05:33] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:05:33] [PASSED] drm_test_check_disable_connector
[22:05:33] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:05:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:05:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:05:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:05:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:05:33] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:05:33] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:05:33] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:05:33] [PASSED] drm_test_check_output_bpc_dvi
[22:05:33] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:05:33] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:05:33] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:05:33] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:05:33] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:05:33] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:05:33] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:05:33] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:05:33] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:05:33] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:05:33] [PASSED] drm_test_check_broadcast_rgb_value
[22:05:33] [PASSED] drm_test_check_bpc_8_value
[22:05:33] [PASSED] drm_test_check_bpc_10_value
[22:05:33] [PASSED] drm_test_check_bpc_12_value
[22:05:33] [PASSED] drm_test_check_format_value
[22:05:33] [PASSED] drm_test_check_tmds_char_value
[22:05:33] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:05:33] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:05:33] [PASSED] drm_test_check_mode_valid
[22:05:33] [PASSED] drm_test_check_mode_valid_reject
[22:05:33] [PASSED] drm_test_check_mode_valid_reject_rate
[22:05:33] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:05:33] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:05:33] ================= drm_managed (2 subtests) =================
[22:05:33] [PASSED] drm_test_managed_release_action
[22:05:33] [PASSED] drm_test_managed_run_action
[22:05:33] =================== [PASSED] drm_managed ===================
[22:05:33] =================== drm_mm (6 subtests) ====================
[22:05:33] [PASSED] drm_test_mm_init
[22:05:33] [PASSED] drm_test_mm_debug
[22:05:33] [PASSED] drm_test_mm_align32
[22:05:33] [PASSED] drm_test_mm_align64
[22:05:33] [PASSED] drm_test_mm_lowest
[22:05:33] [PASSED] drm_test_mm_highest
[22:05:33] ===================== [PASSED] drm_mm ======================
[22:05:33] ============= drm_modes_analog_tv (5 subtests) =============
[22:05:33] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:05:33] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:05:33] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:05:33] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:05:33] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:05:33] =============== [PASSED] drm_modes_analog_tv ===============
[22:05:33] ============== drm_plane_helper (2 subtests) ===============
[22:05:33] =============== drm_test_check_plane_state  ================
[22:05:33] [PASSED] clipping_simple
[22:05:33] [PASSED] clipping_rotate_reflect
[22:05:33] [PASSED] positioning_simple
[22:05:33] [PASSED] upscaling
[22:05:33] [PASSED] downscaling
[22:05:33] [PASSED] rounding1
[22:05:33] [PASSED] rounding2
[22:05:33] [PASSED] rounding3
[22:05:33] [PASSED] rounding4
[22:05:33] =========== [PASSED] drm_test_check_plane_state ============
[22:05:33] =========== drm_test_check_invalid_plane_state  ============
[22:05:33] [PASSED] positioning_invalid
[22:05:33] [PASSED] upscaling_invalid
[22:05:33] [PASSED] downscaling_invalid
[22:05:33] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:05:33] ================ [PASSED] drm_plane_helper =================
[22:05:33] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:05:33] ====== drm_test_connector_helper_tv_get_modes_check  =======
[22:05:33] [PASSED] None
[22:05:33] [PASSED] PAL
[22:05:33] [PASSED] NTSC
[22:05:33] [PASSED] Both, NTSC Default
[22:05:33] [PASSED] Both, PAL Default
[22:05:33] [PASSED] Both, NTSC Default, with PAL on command-line
[22:05:33] [PASSED] Both, PAL Default, with NTSC on command-line
[22:05:33] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:05:33] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:05:33] ================== drm_rect (9 subtests) ===================
[22:05:33] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:05:33] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:05:33] [PASSED] drm_test_rect_clip_scaled_clipped
[22:05:33] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:05:33] ================= drm_test_rect_intersect  =================
[22:05:33] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:05:33] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:05:33] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:05:33] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:05:33] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:05:33] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:05:33] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:05:33] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:05:33] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:05:33] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:05:33] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:05:33] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:05:33] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:05:33] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:05:33] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:05:33] ============= [PASSED] drm_test_rect_intersect =============
[22:05:33] ================ drm_test_rect_calc_hscale  ================
[22:05:33] [PASSED] normal use
[22:05:33] [PASSED] out of max range
[22:05:33] [PASSED] out of min range
[22:05:33] [PASSED] zero dst
[22:05:33] [PASSED] negative src
[22:05:33] [PASSED] negative dst
[22:05:33] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:05:33] ================ drm_test_rect_calc_vscale  ================
[22:05:33] [PASSED] normal use
[22:05:33] [PASSED] out of max range
[22:05:33] [PASSED] out of min range
[22:05:33] [PASSED] zero dst
[22:05:33] [PASSED] negative src
[22:05:33] [PASSED] negative dst
[22:05:33] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:05:33] ================== drm_test_rect_rotate  ===================
[22:05:33] [PASSED] reflect-x
[22:05:33] [PASSED] reflect-y
[22:05:33] [PASSED] rotate-0
[22:05:33] [PASSED] rotate-90
[22:05:33] [PASSED] rotate-180
[22:05:33] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[22:05:33] ============== [PASSED] drm_test_rect_rotate ===============
[22:05:33] ================ drm_test_rect_rotate_inv  =================
[22:05:33] [PASSED] reflect-x
[22:05:33] [PASSED] reflect-y
[22:05:33] [PASSED] rotate-0
[22:05:33] [PASSED] rotate-90
[22:05:33] [PASSED] rotate-180
[22:05:33] [PASSED] rotate-270
[22:05:33] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:05:33] ==================== [PASSED] drm_rect =====================
[22:05:33] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:05:33] ============ drm_test_sysfb_build_fourcc_list  =============
[22:05:33] [PASSED] no native formats
[22:05:33] [PASSED] XRGB8888 as native format
[22:05:33] [PASSED] remove duplicates
[22:05:33] [PASSED] convert alpha formats
[22:05:33] [PASSED] random formats
[22:05:33] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:05:33] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:05:33] ============================================================
[22:05:33] Testing complete. Ran 616 tests: passed: 616
[22:05:33] Elapsed time: 24.737s total, 1.752s configuring, 22.766s building, 0.187s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:05:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:05:34] 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
[22:05:42] Starting KUnit Kernel (1/1)...
[22:05:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:43] ================= ttm_device (5 subtests) ==================
[22:05:43] [PASSED] ttm_device_init_basic
[22:05:43] [PASSED] ttm_device_init_multiple
[22:05:43] [PASSED] ttm_device_fini_basic
[22:05:43] [PASSED] ttm_device_init_no_vma_man
[22:05:43] ================== ttm_device_init_pools  ==================
[22:05:43] [PASSED] No DMA allocations, no DMA32 required
[22:05:43] [PASSED] DMA allocations, DMA32 required
[22:05:43] [PASSED] No DMA allocations, DMA32 required
[22:05:43] [PASSED] DMA allocations, no DMA32 required
[22:05:43] ============== [PASSED] ttm_device_init_pools ==============
[22:05:43] =================== [PASSED] ttm_device ====================
[22:05:43] ================== ttm_pool (8 subtests) ===================
[22:05:43] ================== ttm_pool_alloc_basic  ===================
[22:05:43] [PASSED] One page
[22:05:43] [PASSED] More than one page
[22:05:43] [PASSED] Above the allocation limit
[22:05:43] [PASSED] One page, with coherent DMA mappings enabled
[22:05:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:05:43] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:05:43] ============== ttm_pool_alloc_basic_dma_addr  ==============
[22:05:43] [PASSED] One page
[22:05:43] [PASSED] More than one page
[22:05:43] [PASSED] Above the allocation limit
[22:05:43] [PASSED] One page, with coherent DMA mappings enabled
[22:05:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:05:43] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:05:43] [PASSED] ttm_pool_alloc_order_caching_match
[22:05:43] [PASSED] ttm_pool_alloc_caching_mismatch
[22:05:43] [PASSED] ttm_pool_alloc_order_mismatch
[22:05:43] [PASSED] ttm_pool_free_dma_alloc
[22:05:43] [PASSED] ttm_pool_free_no_dma_alloc
[22:05:43] [PASSED] ttm_pool_fini_basic
[22:05:43] ==================== [PASSED] ttm_pool =====================
[22:05:43] ================ ttm_resource (8 subtests) =================
[22:05:43] ================= ttm_resource_init_basic  =================
[22:05:43] [PASSED] Init resource in TTM_PL_SYSTEM
[22:05:43] [PASSED] Init resource in TTM_PL_VRAM
[22:05:43] [PASSED] Init resource in a private placement
[22:05:43] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:05:43] ============= [PASSED] ttm_resource_init_basic =============
[22:05:43] [PASSED] ttm_resource_init_pinned
[22:05:43] [PASSED] ttm_resource_fini_basic
[22:05:43] [PASSED] ttm_resource_manager_init_basic
[22:05:43] [PASSED] ttm_resource_manager_usage_basic
[22:05:43] [PASSED] ttm_resource_manager_set_used_basic
[22:05:43] [PASSED] ttm_sys_man_alloc_basic
[22:05:43] [PASSED] ttm_sys_man_free_basic
[22:05:43] ================== [PASSED] ttm_resource ===================
[22:05:43] =================== ttm_tt (15 subtests) ===================
[22:05:43] ==================== ttm_tt_init_basic  ====================
[22:05:43] [PASSED] Page-aligned size
[22:05:43] [PASSED] Extra pages requested
[22:05:43] ================ [PASSED] ttm_tt_init_basic ================
[22:05:43] [PASSED] ttm_tt_init_misaligned
[22:05:43] [PASSED] ttm_tt_fini_basic
[22:05:43] [PASSED] ttm_tt_fini_sg
[22:05:43] [PASSED] ttm_tt_fini_shmem
[22:05:43] [PASSED] ttm_tt_create_basic
[22:05:43] [PASSED] ttm_tt_create_invalid_bo_type
[22:05:43] [PASSED] ttm_tt_create_ttm_exists
[22:05:43] [PASSED] ttm_tt_create_failed
[22:05:43] [PASSED] ttm_tt_destroy_basic
[22:05:43] [PASSED] ttm_tt_populate_null_ttm
[22:05:43] [PASSED] ttm_tt_populate_populated_ttm
[22:05:43] [PASSED] ttm_tt_unpopulate_basic
[22:05:43] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:05:43] [PASSED] ttm_tt_swapin_basic
[22:05:43] ===================== [PASSED] ttm_tt ======================
[22:05:43] =================== ttm_bo (14 subtests) ===================
[22:05:43] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[22:05:43] [PASSED] Cannot be interrupted and sleeps
[22:05:43] [PASSED] Cannot be interrupted, locks straight away
[22:05:43] [PASSED] Can be interrupted, sleeps
[22:05:43] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:05:43] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:05:43] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:05:43] [PASSED] ttm_bo_reserve_double_resv
[22:05:43] [PASSED] ttm_bo_reserve_interrupted
[22:05:43] [PASSED] ttm_bo_reserve_deadlock
[22:05:43] [PASSED] ttm_bo_unreserve_basic
[22:05:43] [PASSED] ttm_bo_unreserve_pinned
[22:05:43] [PASSED] ttm_bo_unreserve_bulk
[22:05:43] [PASSED] ttm_bo_put_basic
[22:05:43] [PASSED] ttm_bo_put_shared_resv
[22:05:43] [PASSED] ttm_bo_pin_basic
[22:05:43] [PASSED] ttm_bo_pin_unpin_resource
[22:05:43] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:05:43] ===================== [PASSED] ttm_bo ======================
[22:05:43] ============== ttm_bo_validate (21 subtests) ===============
[22:05:43] ============== ttm_bo_init_reserved_sys_man  ===============
[22:05:43] [PASSED] Buffer object for userspace
[22:05:43] [PASSED] Kernel buffer object
[22:05:43] [PASSED] Shared buffer object
[22:05:43] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:05:43] ============== ttm_bo_init_reserved_mock_man  ==============
[22:05:43] [PASSED] Buffer object for userspace
[22:05:43] [PASSED] Kernel buffer object
[22:05:43] [PASSED] Shared buffer object
[22:05:43] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:05:43] [PASSED] ttm_bo_init_reserved_resv
[22:05:43] ================== ttm_bo_validate_basic  ==================
[22:05:43] [PASSED] Buffer object for userspace
[22:05:43] [PASSED] Kernel buffer object
[22:05:43] [PASSED] Shared buffer object
[22:05:43] ============== [PASSED] ttm_bo_validate_basic ==============
[22:05:43] [PASSED] ttm_bo_validate_invalid_placement
[22:05:43] ============= ttm_bo_validate_same_placement  ==============
[22:05:43] [PASSED] System manager
[22:05:43] [PASSED] VRAM manager
[22:05:43] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:05:43] [PASSED] ttm_bo_validate_failed_alloc
[22:05:43] [PASSED] ttm_bo_validate_pinned
[22:05:43] [PASSED] ttm_bo_validate_busy_placement
[22:05:43] ================ ttm_bo_validate_multihop  =================
[22:05:43] [PASSED] Buffer object for userspace
[22:05:43] [PASSED] Kernel buffer object
[22:05:43] [PASSED] Shared buffer object
[22:05:43] ============ [PASSED] ttm_bo_validate_multihop =============
[22:05:43] ========== ttm_bo_validate_no_placement_signaled  ==========
[22:05:43] [PASSED] Buffer object in system domain, no page vector
[22:05:43] [PASSED] Buffer object in system domain with an existing page vector
[22:05:43] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:05:43] ======== ttm_bo_validate_no_placement_not_signaled  ========
[22:05:43] [PASSED] Buffer object for userspace
[22:05:43] [PASSED] Kernel buffer object
[22:05:43] [PASSED] Shared buffer object
[22:05:43] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:05:43] [PASSED] ttm_bo_validate_move_fence_signaled
[22:05:43] ========= ttm_bo_validate_move_fence_not_signaled  =========
[22:05:43] [PASSED] Waits for GPU
[22:05:43] [PASSED] Tries to lock straight away
[22:05:43] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:05:43] [PASSED] ttm_bo_validate_happy_evict
[22:05:43] [PASSED] ttm_bo_validate_all_pinned_evict
[22:05:43] [PASSED] ttm_bo_validate_allowed_only_evict
[22:05:43] [PASSED] ttm_bo_validate_deleted_evict
[22:05:43] [PASSED] ttm_bo_validate_busy_domain_evict
[22:05:43] [PASSED] ttm_bo_validate_evict_gutting
[22:05:43] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:05:43] ================= [PASSED] ttm_bo_validate =================
[22:05:43] ============================================================
[22:05:43] Testing complete. Ran 101 tests: passed: 101
[22:05:43] Elapsed time: 9.958s total, 1.752s configuring, 7.990s building, 0.187s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-08-27 22:05 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-26 22:06 ` ✓ CI.KUnit: success for " Patchwork
2025-08-27 20:36 [PATCH v6 0/3] " Jonathan Cavitt
2025-08-27 22:05 ` ✓ CI.KUnit: success 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).