public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests
@ 2026-04-28  3:25 Sobin Thomas
  2026-04-28  3:25 ` [PATCH i-g-t v13 1/2] lib/xe: Add failable variant of xe_vm_bind_lr_sync() Sobin Thomas
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Sobin Thomas @ 2026-04-28  3:25 UTC (permalink / raw)
  To: igt-dev, thomas.hellstrom; +Cc: nishit.sharma, kamil.konieczny, Sobin Thomas

Current tests focus on VM creation and basic mode selection, but do not
cover overcommit scenarios.

This change adds tests to verify overcommit behavior across different VM
modes.

Non-fault mode tests:
 - vram-lr-defer: DEFER_BACKING rejects overcommit at bind time
 - vram-lr-external-nodefer: Long-running mode with an external BO and
                             no deferred backing
 - vram-no-lr: Non-long-running mode

Fault mode tests:
 - vram-lr-fault: Fault handling allows graceful overcommit via page faults
 - vram-lr-fault-no-overcommit: Verifies NO_VM_OVERCOMMIT blocks same-VM
   BO eviction during VM_BIND, while still allowing eviction during
   page-fault OOM handling

These tests validate that VMs respond correctly to memory pressure based
on their configuration—by rejecting at bind time, failing during execution,
or handling overcommit gracefully via page faults.

Currently, overcommit behavior is tested for VRAM only.

--------------------------------------
Link (historical context):
https://patchwork.freedesktop.org/series/161557/

Sobin Thomas (2):
  lib/xe: Add failable variant of xe_vm_bind_lr_sync()
  tests/intel/xe_vm: Add support for overcommit tests

 lib/xe/xe_ioctl.c   |  35 ++--
 lib/xe/xe_ioctl.h   |   2 +
 tests/intel/xe_vm.c | 391 +++++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 417 insertions(+), 11 deletions(-)

-- 
2.52.0


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

* [PATCH i-g-t v13 1/2] lib/xe: Add failable variant of xe_vm_bind_lr_sync()
  2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
@ 2026-04-28  3:25 ` Sobin Thomas
  2026-04-28  3:25 ` [PATCH i-g-t v13 2/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Sobin Thomas @ 2026-04-28  3:25 UTC (permalink / raw)
  To: igt-dev, thomas.hellstrom
  Cc: nishit.sharma, kamil.konieczny, Sobin Thomas,
	Thomas Hellström

Add __xe_vm_bind_lr_sync helper function which returns standard error
codes instead of asserting on failure. This allows calling function
to handle VM bind failures explicitly while preserving the existing
xe_vm_bind_lr_sync() wrapper for tests. This enables callers that
expect bind / overcommit failures.

v7: Introduced xe_vm_bind_lr_sync_failable (Thomas)
v8: Modified xe_vm_bind_lr_sync_failable and xe_vm_bind_lr_sync to call
    __xe_vm_bind_lr_sync
v9: Removed redundant typecast and removed xe_vm_bind_lr_sync_failable

Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 lib/xe/xe_ioctl.c | 35 +++++++++++++++++++++++++----------
 lib/xe/xe_ioctl.h |  2 ++
 2 files changed, 27 insertions(+), 10 deletions(-)

diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c
index 1dae56444..e13195e16 100644
--- a/lib/xe/xe_ioctl.c
+++ b/lib/xe/xe_ioctl.c
@@ -860,23 +860,38 @@ uint32_t xe_vm_madvise_purgeable(int fd, uint32_t vm_id, uint64_t start,
 }
 
 #define	BIND_SYNC_VAL	0x686868
-void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
-			uint64_t addr, uint64_t size, uint32_t flags)
+int __xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
+			 uint64_t addr, uint64_t size, uint32_t flags)
 {
-	volatile uint64_t *sync_addr = malloc(sizeof(*sync_addr));
+	uint64_t *sync_addr = malloc(sizeof(*sync_addr));
 	struct drm_xe_sync sync = {
 		.flags = DRM_XE_SYNC_FLAG_SIGNAL,
 		.type = DRM_XE_SYNC_TYPE_USER_FENCE,
-		.addr = to_user_pointer((uint64_t *)sync_addr),
+		.addr = to_user_pointer(sync_addr),
 		.timeline_value = BIND_SYNC_VAL,
 	};
-
-	igt_assert(!!sync_addr);
-	xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, size, &sync, 1, flags);
-	if (*sync_addr != BIND_SYNC_VAL)
-		xe_wait_ufence(fd, (uint64_t *)sync_addr, BIND_SYNC_VAL, 0, NSEC_PER_SEC * 10);
+	int ret = 0;
+
+	if (!sync_addr)
+		return -ENOMEM;
+	WRITE_ONCE(*sync_addr, 0);
+	ret = __xe_vm_bind(fd, vm, 0, bo, offset, addr, size, DRM_XE_VM_BIND_OP_MAP, flags,
+			   &sync, 1, 0,  DEFAULT_PAT_INDEX, 0);
+	if (ret)
+		goto out;
+
+	if (READ_ONCE(*sync_addr) != BIND_SYNC_VAL)
+		xe_wait_ufence(fd, sync_addr, BIND_SYNC_VAL, 0, NSEC_PER_SEC * 10);
 	/* Only free if the wait succeeds */
-	free((void *)sync_addr);
+out:
+	free(sync_addr);
+	return ret;
+}
+
+void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
+			uint64_t addr, uint64_t size, uint32_t flags)
+{
+	igt_assert_eq(__xe_vm_bind_lr_sync(fd, vm, bo, offset, addr, size, flags), 0);
 }
 
 void xe_vm_unbind_lr_sync(int fd, uint32_t vm, uint64_t offset,
diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h
index ceb380685..768f77246 100644
--- a/lib/xe/xe_ioctl.h
+++ b/lib/xe/xe_ioctl.h
@@ -120,6 +120,8 @@ struct drm_xe_mem_range_attr
 void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo,
 			uint64_t offset, uint64_t addr,
 			uint64_t size, uint32_t flags);
+int __xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
+			 uint64_t addr, uint64_t size, uint32_t flags);
 void xe_vm_unbind_lr_sync(int fd, uint32_t vm, uint64_t offset,
 			  uint64_t addr, uint64_t size);
 #endif /* XE_IOCTL_H */
-- 
2.52.0


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

* [PATCH i-g-t v13 2/2] tests/intel/xe_vm: Add support for overcommit tests
  2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
  2026-04-28  3:25 ` [PATCH i-g-t v13 1/2] lib/xe: Add failable variant of xe_vm_bind_lr_sync() Sobin Thomas
@ 2026-04-28  3:25 ` Sobin Thomas
  2026-04-28  4:27 ` ✓ i915.CI.BAT: success for tests/intel/xe_vm: Add support for overcommit tests (rev9) Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Sobin Thomas @ 2026-04-28  3:25 UTC (permalink / raw)
  To: igt-dev, thomas.hellstrom
  Cc: nishit.sharma, kamil.konieczny, Sobin Thomas,
	Thomas Hellström

Current tests focus on VM creation with basic mode selection and do not
support overcommit scenarios.

This change adds tests to verify overcommit behavior across different VM
modes.

Non-fault mode tests:
 - vram-lr-defer: DEFER_BACKING rejects overcommit at bind time
 - vram-lr-external-nodefer: Long-running mode with external BO and
                             no defer backing
 - vram-no-lr: Non-LR mode

Fault mode tests:
 - vram-lr-fault: Fault handling allows graceful overcommit via page
   faults
 - vram-lr-fault-no-overcommit: Verifies NO_VM_OVERCOMMIT blocks same-VM
   BO eviction during VM_BIND while still allowing eviction during
   pagefault OOM

These tests validate that VMs handle memory pressure appropriately based
on their configuration—rejecting at bind, failing at exec, or handling
it gracefully via page faults.

v2 - Added Additional test cases for LR mode and No Overcommit.

v3 - Refactored into single api call  based on the VM / BO Flags.

v5 - Addressed review comments (reset sync objects and nits).
     Added check in cleanup
v6 - Replaced __xe_vm_bind with xe_vm_bind_lr_sync and refactored.
v7 - Add failable xe_vm_bind_lr_sync to handle the failure in the
     vm bind in case over commit happens.
v9 - Replaced xe_vm_bind_lr_sync_failable with __xe_vm_bind_lr_sync
v10 - Add ENOSPC error, moved BO map after bind is completed.
      Removed special casing LR Mode.
v11 - Add stage checks for the over commits for different stages
     (bind / exec).
v12 - Removed bind user ptr exclusive for fault mode.
      Replaced igt_assert with igt_require for xe_visible_vram_size

Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 tests/intel/xe_vm.c | 391 +++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 390 insertions(+), 1 deletion(-)

diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index d75b0730d..408bfdb71 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -20,6 +20,14 @@
 #include "xe/xe_query.h"
 #include "xe/xe_spin.h"
 #include <string.h>
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+
+enum overcommit_stage {
+	EXPECT_NONE,
+	EXPECT_CREATE,
+	EXPECT_BIND,
+	EXPECT_EXEC,
+};
 
 static uint32_t
 addr_low(uint64_t addr)
@@ -2376,6 +2384,376 @@ static void invalid_vm_id(int fd)
 	do_ioctl_err(fd, DRM_IOCTL_XE_VM_DESTROY, &destroy, ENOENT);
 }
 
+static enum overcommit_stage create_data_bos(int fd, uint32_t vm, uint32_t *bos, int num_bos,
+					     uint64_t nf_bo_size, bool use_vram, uint64_t data_addr,
+					     uint32_t bo_flags, int gt_id, int *num_bound_out)
+{
+	uint32_t placement = use_vram ? vram_memory(fd, gt_id) : system_memory(fd);
+
+	*num_bound_out = 0;
+
+	for (int i = 0; i < num_bos; i++) {
+		int bind_err;
+		int create_ret = 0;
+
+		/* Create BO using the case's create function */
+		create_ret = __xe_bo_create(fd, vm, nf_bo_size, placement,
+					    bo_flags, NULL, &bos[i]);
+
+		if (create_ret) {
+			if (errno == ENOMEM || errno == ENOSPC) {
+				igt_debug("BO create failed at %d/%d with error %d (%s)\n",
+					  i, num_bos, errno, strerror(errno));
+				return EXPECT_CREATE;
+			}
+			igt_assert_f(0, "Unexpected BO create error %d (%s)\n", errno,
+				     strerror(errno));
+		}
+
+		bind_err = __xe_vm_bind_lr_sync(fd, vm, bos[i], 0, data_addr +
+						((uint64_t)i * nf_bo_size), nf_bo_size, 0);
+		if (bind_err) {
+			if (errno == ENOMEM || errno == ENOSPC) {
+				igt_debug("BO bind failed at %d/%d - error %d (%s), %d BOs bound\n",
+					  i, num_bos, errno, strerror(errno), i);
+				return EXPECT_BIND;
+			}
+			igt_assert_f(0, "Unexpected BO bind error %d (%s)\n", errno,
+				     strerror(errno));
+		}
+
+		*num_bound_out = i + 1;
+		igt_debug("Created and bound BO %d/%d at 0x%llx\n",
+			  i + 1, num_bos,
+			  (unsigned long long)(data_addr + ((uint64_t)i * nf_bo_size)));
+	}
+	return EXPECT_NONE;
+}
+
+static void verify_bo(int fd, uint32_t *bos, int num_bos, uint64_t nf_bo_size, uint64_t stride)
+{
+	for (int i = 0; i < num_bos; i++) {
+		uint32_t *verify_data;
+		int errors = 0;
+
+		verify_data = xe_bo_map(fd, bos[i], nf_bo_size);
+		igt_assert(verify_data);
+
+		for (int off = 0; off < nf_bo_size; off += stride) {
+			uint32_t expected = 0xBB;
+			uint32_t actual = *(uint32_t *)((char *)verify_data + off);
+
+			if (actual != expected) {
+				if (errors < 5)
+					igt_debug("Mismatch at BO %d offset 0x%llx",
+						  i, (unsigned long long)off);
+				errors++;
+			}
+		}
+
+		munmap(verify_data, nf_bo_size);
+		igt_assert_f(errors == 0, "Data verification failed for BO %d with %d errors\n",
+			     i, errors);
+	}
+}
+
+static void bind_userptr_sync(int fd, uint32_t vm, uint32_t bind_exec_queue, void *userptr,
+			      uint64_t addr, uint64_t size, struct drm_xe_sync *sync,
+			      uint64_t *sync_mem)
+{
+	*sync_mem = 0;
+
+	sync->addr = to_user_pointer(sync_mem);
+	xe_vm_bind_userptr_async(fd, vm, bind_exec_queue, to_user_pointer(userptr), addr, size,
+				 sync, 1);
+	xe_wait_ufence(fd, sync_mem, USER_FENCE_VALUE, bind_exec_queue, 20 * NSEC_PER_SEC);
+}
+
+/**
+ * SUBTEST: overcommit-fault-%s
+ * Description: Test VM overcommit behavior in fault mode with %arg[1] configuration
+ * Functionality: overcommit
+ * Test category: functionality test
+ *
+ * arg[1]:
+ *
+ * @vram-lr:VRAM with LR and fault mode, expects exec to pass
+ * @vram-lr-no-overcommit:VRAM with LR, fault and NO_VM_OVERCOMMIT; exec succeeds via migration
+ */
+
+/**
+ * SUBTEST: overcommit-nonfault-%s
+ * Description: Test VM overcommit behavior in nonfault mode with %arg[1] configuration
+ * Functionality: overcommit
+ * Test category: functionality test
+ *
+ * arg[1]:
+ *
+ * @vram-lr-defer:VRAM with LR and defer backing, expects bind rejection
+ * @vram-lr-external-nodefer:VRAM with LR and external BO without defer, expects bind fail
+ * @vram-no-lr:VRAM without LR mode, expects exec to fail
+ */
+struct vm_overcommit_case {
+	const char *name;
+	uint32_t vm_flags;
+	uint32_t bo_flags;
+	bool use_vram;
+	uint64_t data_addr;
+	int overcommit_mult;
+	enum overcommit_stage expected_stage;
+};
+
+static const struct vm_overcommit_case overcommit_cases[] = {
+	/* DEFER_BACKING */
+	{
+		.name = "vram-lr-defer",
+		.vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE,
+		.bo_flags = DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING |
+			    DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+		.use_vram = true,
+		.data_addr = 0x1a0000,
+		.overcommit_mult = 2,
+		.expected_stage = EXPECT_BIND,
+	},
+	/* External BO without defer backing */
+	{
+		.name = "vram-lr-external-nodefer",
+		.vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE,
+		.bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+		.use_vram = true,
+		.data_addr = 0x1a0000,
+		.overcommit_mult = 2,
+		.expected_stage = EXPECT_BIND,
+	},
+	/* LR + FAULT - should not fail on exec */
+	{
+		.name = "vram-lr",
+		.vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE |
+			    DRM_XE_VM_CREATE_FLAG_FAULT_MODE,
+		.bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+		.use_vram = true,
+		.data_addr = 0x300000000,
+		.overcommit_mult = 2,
+		.expected_stage = EXPECT_NONE,
+	},
+	/* !LR - overcommit should fail on exec */
+	{
+		.name = "vram-no-lr",
+		.vm_flags = 0,
+		.bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+		.use_vram = true,
+		.data_addr = 0x300000000,
+		.overcommit_mult = 2,
+		.expected_stage = EXPECT_EXEC,
+	},
+	/* LR + FAULT + NO_VM_OVERCOMMIT */
+	{
+		.name = "vram-lr-no-overcommit",
+		.vm_flags = DRM_XE_VM_CREATE_FLAG_NO_VM_OVERCOMMIT | DRM_XE_VM_CREATE_FLAG_LR_MODE |
+			    DRM_XE_VM_CREATE_FLAG_FAULT_MODE,
+		.bo_flags = DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING |
+			    DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+		.use_vram = true,
+		.data_addr = 0x300000000,
+		.overcommit_mult = 2,
+		/*
+		 * FAULT_MODE handles VRAM pressure via migration even with
+		 * NO_VM_OVERCOMMIT; DEFER_BACKING defers physical allocation
+		 * to fault time so bind-time rejection does not occur.
+		 */
+		.expected_stage = EXPECT_NONE,
+	},
+	{ }
+};
+
+static void
+test_vm_overcommit(int fd, struct drm_xe_engine_class_instance *eci,
+		   const struct vm_overcommit_case *c,
+		   uint64_t system_size, uint64_t vram_size)
+{
+	uint32_t vm = 0, *bos, batch_bo = 0, exec_queue = 0, bind_exec_queue = 0;
+	uint64_t sync_addr = 0x1000000000, batch_addr = 0x200000000;
+	int i, num_bos, num_bound = 0, bind_err, create_ret, wait_ret;
+	size_t sync_size, nf_bo_size = 64 * 1024 * 1024;
+	enum overcommit_stage actual_stage = EXPECT_NONE;
+	uint64_t stride = 1024 * 1024, base_size;
+	uint64_t overcommit_size, off, data_addr;
+	int64_t timeout = 20 * NSEC_PER_SEC;
+	struct drm_xe_sync bind_sync[1] = {
+		{
+			.type = DRM_XE_SYNC_TYPE_USER_FENCE,
+			.flags = DRM_XE_SYNC_FLAG_SIGNAL,
+			.timeline_value = USER_FENCE_VALUE
+		},
+	};
+	struct drm_xe_sync exec_sync[1] = {
+		{
+			.type = DRM_XE_SYNC_TYPE_USER_FENCE,
+			.flags = DRM_XE_SYNC_FLAG_SIGNAL,
+			.timeline_value = USER_FENCE_VALUE,
+		},
+	};
+	struct drm_xe_exec exec = {
+		.num_batch_buffer = 1,
+		.num_syncs = 1,
+		.syncs = to_user_pointer(exec_sync),
+	};
+	struct {
+		uint32_t batch[16];
+		uint64_t pad;
+		uint32_t data;
+		uint64_t vm_sync;
+	} *batch_data = NULL;
+	uint64_t *user_fence_sync = NULL;
+
+	data_addr = c->data_addr;
+	base_size = c->use_vram ? vram_size : system_size;
+	overcommit_size = ALIGN((uint64_t)(base_size * c->overcommit_mult), 4096);
+
+	num_bos = (overcommit_size / nf_bo_size) + 1;
+	bos = calloc(num_bos, sizeof(*bos));
+	igt_assert(bos);
+
+	igt_debug("Overcommit test: allocating %d BOs of %llu MB each",
+		  num_bos, (unsigned long long)(nf_bo_size >> 20));
+	igt_debug("total=%llu MB, vram=%llu MB\n",
+		  (unsigned long long)(num_bos * nf_bo_size >> 20),
+		  (unsigned long long)(vram_size >> 20));
+	/* Create VM with appropriate flags */
+	vm = xe_vm_create(fd, c->vm_flags, 0);
+	igt_assert(vm);
+
+	bind_exec_queue = xe_bind_exec_queue_create(fd, vm, 0);
+	sync_size = xe_bb_size(fd, sizeof(uint64_t) * num_bos);
+	user_fence_sync = mmap(NULL, sync_size, PROT_READ | PROT_WRITE,
+			       MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+	igt_assert(user_fence_sync != MAP_FAILED);
+	memset(user_fence_sync, 0, sync_size);
+	exec_sync->addr = to_user_pointer(&user_fence_sync[0]);
+
+	/* Create and bind data BOs */
+	actual_stage = create_data_bos(fd, vm, bos, num_bos, nf_bo_size, c->use_vram, data_addr,
+				       c->bo_flags, eci->gt_id, &num_bound);
+	/*
+	 * On EXPECT_CREATE nothing was bound so bail out entirely.
+	 * On EXPECT_BIND with no BOs bound there is nothing to execute either.
+	 * On EXPECT_BIND with some BOs bound, continue executing so that the
+	 * already-bound BOs can still be executed, verifying they are usable
+	 * after a partial bind failure.
+	 */
+	if (actual_stage == EXPECT_CREATE || (actual_stage == EXPECT_BIND && num_bound == 0))
+		goto check_and_cleanup;
+
+	/*
+	 * Create batch buffer first in SRAM as focus is to
+	 * check overcommit in VRAM
+	 */
+	create_ret = __xe_bo_create(fd, vm, 0x1000, system_memory(fd), 0, NULL, &batch_bo);
+	igt_assert_f(create_ret == 0, "Unexpected batch BO create error %d (%s)\n",
+		     create_ret, strerror(errno));
+
+	igt_debug("Mapping the created BO\n");
+	batch_data = xe_bo_map(fd, batch_bo, 0x1000);
+	igt_assert(batch_data);
+	memset(batch_data, 0, 0x1000);
+
+	bind_userptr_sync(fd, vm, bind_exec_queue, user_fence_sync, sync_addr, sync_size, bind_sync,
+			  &batch_data->vm_sync);
+	exec_sync->addr = sync_addr;
+	batch_data->vm_sync = 0;
+	bind_err = __xe_vm_bind_lr_sync(fd, vm, batch_bo, 0, batch_addr, 0x1000, 0);
+	if (bind_err) {
+		if (errno == ENOMEM || errno == ENOSPC) {
+			actual_stage = EXPECT_BIND;
+			goto check_and_cleanup;
+		} else { /* Assert on any unexpected bind error */
+			igt_assert_f(0, "Unexpected bind error %d (%s)\n", bind_err,
+				     strerror(errno));
+		}
+	}
+
+	igt_debug("VM binds done - batch_bo at 0x%llx\n", (unsigned long long)batch_addr);
+	exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
+
+	/* Use GPU to write to each successfully bound BO */
+	for (i = 0; i < num_bound; i++) {
+		igt_debug("Writing to BO %d/%d via GPU\n", i + 1, num_bos);
+		timeout = 20 * NSEC_PER_SEC;
+
+		for (off = 0; off < nf_bo_size; off += stride) {
+			uint64_t target_addr = data_addr + ((uint64_t)i * nf_bo_size) + off;
+			int b_idx = 0;
+
+			batch_data->batch[b_idx++] = MI_STORE_DWORD_IMM_GEN4;
+			batch_data->batch[b_idx++] = target_addr & 0xFFFFFFFF;
+			batch_data->batch[b_idx++] = (target_addr >> 32) & 0xFFFFFFFF;
+			batch_data->batch[b_idx++] = 0xBB;
+			batch_data->batch[b_idx++] = MI_BATCH_BUFFER_END;
+
+			/* Submit batch */
+			exec.exec_queue_id = exec_queue;
+			exec.address = batch_addr;
+
+			if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC, &exec)) {
+				if (errno == ENOMEM || errno == ENOSPC) {
+					igt_debug("Expected fault/error: %d (%s)\n",
+						  errno, strerror(errno));
+					actual_stage = EXPECT_EXEC;
+					goto check_and_cleanup;
+				}
+				igt_assert_f(0, "Unexpected exec error: %d\n", errno);
+			}
+			wait_ret = __xe_wait_ufence(fd, &user_fence_sync[0],
+						    USER_FENCE_VALUE, exec_queue, &timeout);
+			/*
+			 * EIO means the exec queue was banned due to VRAM
+			 * exhaustion in non-fault mode after partial bind.
+			 */
+			if (wait_ret == -EIO) {
+				igt_assert_f(c->expected_stage == EXPECT_BIND ||
+					     c->expected_stage == EXPECT_EXEC,
+					     "Unexpected queue reset\n");
+				actual_stage = EXPECT_EXEC;
+				goto check_and_cleanup;
+			}
+			igt_assert_eq(wait_ret, 0);
+			user_fence_sync[0] = 0;
+		}
+		igt_debug("Accessed BO %d/%d via GPU\n", i + 1, num_bos);
+	}
+	igt_debug("All batches submitted - waiting for GPU completion\n");
+
+	/* Verify GPU writes for bound BOs */
+	if (actual_stage == EXPECT_NONE || (actual_stage == EXPECT_BIND && num_bound > 0))
+		verify_bo(fd, bos, num_bound, nf_bo_size, stride);
+
+check_and_cleanup:
+	igt_assert_f(actual_stage == c->expected_stage, "Expected overcommit at stage %d, got %d\n",
+		     c->expected_stage, actual_stage);
+	/* Cleanup */
+	if (exec_queue)
+		xe_exec_queue_destroy(fd, exec_queue);
+	if (bind_exec_queue)
+		xe_exec_queue_destroy(fd, bind_exec_queue);
+	if (batch_data)
+		munmap(batch_data, 0x1000);
+	if (batch_bo)
+		gem_close(fd, batch_bo);
+
+	if (user_fence_sync)
+		munmap(user_fence_sync, sync_size);
+
+	if (bos) {
+		for (i = 0; i < num_bos; i++) {
+			if (bos[i])
+				gem_close(fd, bos[i]);
+		}
+		free(bos);
+	}
+	if (vm > 0)
+		xe_vm_destroy(fd, vm);
+}
+
 /**
  * SUBTEST: out-of-memory
  * Description: Test if vm_bind ioctl results in oom
@@ -2385,7 +2763,6 @@ static void invalid_vm_id(int fd)
  */
 static void test_oom(int fd)
 {
-#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
 #define BO_SIZE xe_bb_size(fd, SZ_512M)
 #define MAX_BUFS ((int)(xe_visible_vram_size(fd, 0) / BO_SIZE))
 	uint64_t addr = 0x1a0000;
@@ -3115,6 +3492,18 @@ int igt_main()
 			test_get_property(fd, f->test);
 	}
 
+	for (int i = 0; overcommit_cases[i].name; i++) {
+		const struct vm_overcommit_case *c = &overcommit_cases[i];
+		const char *mode = (c->vm_flags & DRM_XE_VM_CREATE_FLAG_FAULT_MODE) ?
+					"fault" : "nonfault";
+		igt_subtest_f("overcommit-%s-%s", mode, c->name) {
+			igt_require(xe_has_vram(fd));
+			igt_require(xe_visible_vram_size(fd, 0));
+			test_vm_overcommit(fd, hwe_non_copy, c, (igt_get_avail_ram_mb() << 20),
+					   xe_visible_vram_size(fd, 0));
+		}
+	}
+
 	igt_fixture()
 		drm_close_driver(fd);
 }
-- 
2.52.0


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

* ✓ i915.CI.BAT: success for tests/intel/xe_vm: Add support for overcommit tests (rev9)
  2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
  2026-04-28  3:25 ` [PATCH i-g-t v13 1/2] lib/xe: Add failable variant of xe_vm_bind_lr_sync() Sobin Thomas
  2026-04-28  3:25 ` [PATCH i-g-t v13 2/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
@ 2026-04-28  4:27 ` Patchwork
  2026-04-28  4:37 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-28  4:27 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 2143 bytes --]

== Series Details ==

Series: tests/intel/xe_vm: Add support for overcommit tests (rev9)
URL   : https://patchwork.freedesktop.org/series/163579/
State : success

== Summary ==

CI Bug Log - changes from IGT_8874 -> IGTPW_15067
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/index.html

Participating hosts (42 -> 39)
------------------------------

  Missing    (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_15067 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/bat-arls-5/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-dg2-8:          [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-dg2-8/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/bat-dg2-8/igt@i915_selftest@live.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8874 -> IGTPW_15067
  * Linux: CI_DRM_18369 -> CI_DRM_18373

  CI-20190529: 20190529
  CI_DRM_18369: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18373: aea2c496abcf55b647c14fe720bfc4ea555aac6a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15067: 7551ec308054c4588472aef64e9208f4199ff393 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/index.html

[-- Attachment #2: Type: text/html, Size: 2846 bytes --]

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

* ✓ Xe.CI.BAT: success for tests/intel/xe_vm: Add support for overcommit tests (rev9)
  2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
                   ` (2 preceding siblings ...)
  2026-04-28  4:27 ` ✓ i915.CI.BAT: success for tests/intel/xe_vm: Add support for overcommit tests (rev9) Patchwork
@ 2026-04-28  4:37 ` Patchwork
  2026-04-28 10:16 ` ✓ i915.CI.Full: " Patchwork
  2026-04-28 11:11 ` ✗ Xe.CI.FULL: failure " Patchwork
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-28  4:37 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 1167 bytes --]

== Series Details ==

Series: tests/intel/xe_vm: Add support for overcommit tests (rev9)
URL   : https://patchwork.freedesktop.org/series/163579/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8874_BAT -> XEIGTPW_15067_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 12)
------------------------------

  Missing    (1): bat-wcl-2 


Changes
-------

  No changes found


Build changes
-------------

  * IGT: IGT_8874 -> IGTPW_15067
  * Linux: xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf -> xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a

  IGTPW_15067: 7551ec308054c4588472aef64e9208f4199ff393 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf
  xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a: aea2c496abcf55b647c14fe720bfc4ea555aac6a

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/index.html

[-- Attachment #2: Type: text/html, Size: 1726 bytes --]

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

* ✓ i915.CI.Full: success for tests/intel/xe_vm: Add support for overcommit tests (rev9)
  2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
                   ` (3 preceding siblings ...)
  2026-04-28  4:37 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-28 10:16 ` Patchwork
  2026-04-28 11:11 ` ✗ Xe.CI.FULL: failure " Patchwork
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-28 10:16 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 140741 bytes --]

== Series Details ==

Series: tests/intel/xe_vm: Add support for overcommit tests (rev9)
URL   : https://patchwork.freedesktop.org/series/163579/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_18373_full -> IGTPW_15067_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/index.html

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in IGTPW_15067_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-keep-cache:
    - shard-dg2:          NOTRUN -> [SKIP][1] ([i915#8411])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-rkl:          NOTRUN -> [SKIP][2] ([i915#8411])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-rkl:          NOTRUN -> [SKIP][3] ([i915#11078])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@gem_bad_reloc@negative-reloc-bltcopy:
    - shard-mtlp:         NOTRUN -> [SKIP][4] ([i915#3281]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-bltcopy.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [PASS][9] -> [INCOMPLETE][10] ([i915#13356]) +1 other test incomplete
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-8/igt@gem_ccs@suspend-resume.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-1/igt@gem_ccs@suspend-resume.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#7697])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-tglu:         NOTRUN -> [SKIP][12] ([i915#6335])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_create@create-ext-set-pat:
    - shard-tglu-1:       NOTRUN -> [SKIP][13] ([i915#8562])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
    - shard-dg1:          NOTRUN -> [SKIP][14] ([i915#8562])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_isolation@preservation-s3:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][15] ([i915#13356]) +2 other tests incomplete
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8555])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][17] ([i915#8555])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#8555])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][19] ([i915#1099])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg1:          NOTRUN -> [SKIP][20] ([i915#280])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html
    - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#280])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html
    - shard-mtlp:         NOTRUN -> [SKIP][22] ([i915#280])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@in-flight-suspend:
    - shard-rkl:          [PASS][24] -> [ABORT][25] ([i915#15131])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@gem_eio@in-flight-suspend.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-1/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         NOTRUN -> [FAIL][28] ([i915#15816])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@gem_exec_big@single.html

  * igt@gem_exec_capture@capture:
    - shard-mtlp:         NOTRUN -> [FAIL][29] ([i915#11965]) +1 other test fail
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@gem_exec_capture@capture.html

  * igt@gem_exec_capture@capture-invisible:
    - shard-glk11:        NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk11/igt@gem_exec_capture@capture-invisible.html

  * igt@gem_exec_capture@capture@vecs0-lmem0:
    - shard-dg2:          NOTRUN -> [FAIL][31] ([i915#11965]) +4 other tests fail
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html
    - shard-dg1:          NOTRUN -> [FAIL][32] ([i915#11965]) +2 other tests fail
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@gem_exec_capture@capture@vecs0-lmem0.html

  * igt@gem_exec_fence@submit3:
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_reloc@basic-softpin:
    - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@gem_exec_reloc@basic-softpin.html
    - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-12/igt@gem_exec_reloc@basic-softpin.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#3281]) +14 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-chain.html
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#7276])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4860]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          NOTRUN -> [SKIP][41] ([i915#4613] / [i915#7582])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#4613])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#12193])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#4565])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html

  * igt@gem_lmem_swapping@massive:
    - shard-rkl:          NOTRUN -> [SKIP][47] ([i915#14544] / [i915#4613])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_lmem_swapping@massive.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-glk:          NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-tglu:         NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-6/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_media_vme:
    - shard-tglu:         NOTRUN -> [SKIP][50] ([i915#284])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-3/igt@gem_media_vme.html

  * igt@gem_mmap_gtt@basic-read-write-distinct:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4077]) +7 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@gem_mmap_gtt@basic-read-write-distinct.html

  * igt@gem_mmap_gtt@coherency:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-19/igt@gem_mmap_gtt@coherency.html

  * igt@gem_mmap_gtt@cpuset-medium-copy:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4077]) +6 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html

  * igt@gem_mmap_wc@write-gtt-read-wc:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4083]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@gem_mmap_wc@write-gtt-read-wc.html

  * igt@gem_mmap_wc@write-read:
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@gem_mmap_wc@write-read.html
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@gem_mmap_wc@write-read.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#3282]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#3282])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#3282])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pread@display:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-1/igt@gem_pread@display.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-rkl:          NOTRUN -> [SKIP][61] ([i915#13717] / [i915#14544])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
    - shard-tglu:         NOTRUN -> [SKIP][62] ([i915#13398])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html
    - shard-mtlp:         NOTRUN -> [SKIP][63] ([i915#13398])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@gem_pxp@regular-baseline-src-copy-readible.html
    - shard-dg1:          NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html

  * igt@gem_render_copy@y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#8428]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@gem_render_copy@y-tiled.html

  * igt@gem_userptr_blits@relocations:
    - shard-rkl:          NOTRUN -> [SKIP][68] ([i915#3281] / [i915#3297])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@gem_userptr_blits@relocations.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-tglu-1:       NOTRUN -> [SKIP][69] ([i915#3297])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#3297])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap.html
    - shard-rkl:          NOTRUN -> [SKIP][71] ([i915#3297])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html
    - shard-tglu:         NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][73] ([i915#13356] / [i915#14586])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk11/igt@gem_workarounds@suspend-resume.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-rkl:          NOTRUN -> [SKIP][74] ([i915#14544]) +4 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#2856]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg1:          NOTRUN -> [SKIP][76] ([i915#2527])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@gen9_exec_parse@bb-large.html
    - shard-mtlp:         NOTRUN -> [SKIP][77] ([i915#2856])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-8/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglu-1:       NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-rkl:          NOTRUN -> [SKIP][79] ([i915#2527]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@gen9_exec_parse@bb-start-param.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-tglu:         NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +2 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-6/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-tglu-1:       NOTRUN -> [SKIP][81] ([i915#15479]) +4 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-tglu-1:       NOTRUN -> [ABORT][82] ([i915#15342]) +1 other test abort
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][83] ([i915#13029] / [i915#14545])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@i915_module_load@reload-no-display.html
    - shard-tglu-1:       NOTRUN -> [DMESG-WARN][84] ([i915#13029] / [i915#14545])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@i915_module_load@reload-no-display.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][85] ([i915#14545])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-snb7/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-rkl:          NOTRUN -> [SKIP][86] ([i915#8399])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_freq_api@freq-reset-multiple:
    - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#8399]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-3/igt@i915_pm_freq_api@freq-reset-multiple.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-dg2:          NOTRUN -> [FAIL][88] ([i915#12964]) +1 other test fail
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#11681])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@i915_pm_rps@thresholds-idle-park.html
    - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#11681])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park.html
    - shard-mtlp:         NOTRUN -> [SKIP][91] ([i915#11681])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_query@hwconfig_table:
    - shard-dg1:          NOTRUN -> [SKIP][92] ([i915#6245])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@i915_query@hwconfig_table.html

  * igt@i915_selftest@live:
    - shard-mtlp:         NOTRUN -> [DMESG-FAIL][93] ([i915#12061] / [i915#15560])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - shard-dg2:          NOTRUN -> [DMESG-FAIL][94] ([i915#12061]) +1 other test dmesg-fail
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@i915_selftest@live@workarounds.html
    - shard-mtlp:         NOTRUN -> [DMESG-FAIL][95] ([i915#12061])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-8/igt@i915_selftest@live@workarounds.html

  * igt@intel_hwmon@hwmon-write:
    - shard-tglu:         NOTRUN -> [SKIP][96] ([i915#7707])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-10/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#4212])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
    - shard-glk:          [PASS][98] -> [FAIL][99] ([i915#14888])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-glk:          NOTRUN -> [INCOMPLETE][100] ([i915#12761]) +1 other test incomplete
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][101] ([i915#1769]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-tglu-1:       NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][105] ([i915#5286]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-rkl:          NOTRUN -> [SKIP][106] ([i915#5286]) +5 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#5286]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][108] ([i915#14544] / [i915#5286])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][109] ([i915#3638]) +2 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][110] ([i915#3828]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#3638]) +3 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
    - shard-mtlp:         [PASS][112] -> [FAIL][113] ([i915#15733] / [i915#5138]) +1 other test fail
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +7 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-tglu-1:       NOTRUN -> [SKIP][115] +24 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#5190]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html
    - shard-mtlp:         NOTRUN -> [SKIP][117] ([i915#6187])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][118] ([i915#4538]) +2 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         NOTRUN -> [SKIP][119] +9 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [SKIP][120] +67 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#6095]) +30 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#14098] / [i915#6095]) +51 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][123] ([i915#6095]) +74 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#12313])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][127] ([i915#12313])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][128] ([i915#12313])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][129] ([i915#6095]) +44 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][130] ([i915#6095]) +204 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#14544] / [i915#6095]) +4 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          NOTRUN -> [INCOMPLETE][132] ([i915#15582]) +3 other tests incomplete
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#6095]) +64 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][135] ([i915#12313] / [i915#14544])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#6095]) +14 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +82 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-tglu-1:       NOTRUN -> [SKIP][138] ([i915#3742])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#13783]) +3 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-dg2:          NOTRUN -> [SKIP][140] +6 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +3 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
    - shard-tglu-1:       NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-rkl:          NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +9 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +3 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-dg1:          NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +4 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
    - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#15865])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#15865])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-19/igt@kms_content_protection@atomic-dpms-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][149] ([i915#15865])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-5/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@content-type-change:
    - shard-rkl:          NOTRUN -> [SKIP][150] ([i915#15865]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_content_protection@content-type-change.html
    - shard-tglu-1:       NOTRUN -> [SKIP][151] ([i915#15865])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg1:          NOTRUN -> [SKIP][152] ([i915#15330] / [i915#3299])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][153] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][154] ([i915#15330])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
    - shard-tglu:         NOTRUN -> [SKIP][155] ([i915#15330])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-tglu:         NOTRUN -> [SKIP][156] ([i915#15865]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][157] -> [FAIL][158] ([i915#13566]) +2 other tests fail
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#13049])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][160] -> [FAIL][161] ([i915#13566]) +1 other test fail
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][162] ([i915#13049])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-mtlp:         NOTRUN -> [SKIP][163] ([i915#8814])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x256:
    - shard-dg1:          NOTRUN -> [DMESG-WARN][164] ([i915#4423])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-256x256.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#3555]) +9 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-tglu-1:       NOTRUN -> [SKIP][166] ([i915#3555]) +2 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-tglu-1:       NOTRUN -> [SKIP][167] ([i915#13049])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][168] ([i915#13566]) +2 other tests fail
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][169] ([i915#12358] / [i915#14152] / [i915#7882])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][170] ([i915#12358] / [i915#14152])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][171] +16 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][172] ([i915#4103])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][173] ([i915#9809]) +3 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +3 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#9067])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_dp_aux_dev@basic:
    - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#1257])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-1/igt@kms_dp_aux_dev@basic.html
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#1257])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_dp_aux_dev@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][178] ([i915#1257])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@kms_dp_aux_dev@basic.html
    - shard-tglu:         NOTRUN -> [SKIP][179] ([i915#1257])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_dp_aux_dev@basic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#13749])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#13749])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-rkl:          NOTRUN -> [SKIP][182] ([i915#13748])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][183] ([i915#8812])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html
    - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-dg1:          [PASS][187] -> [FAIL][188] ([i915#4767])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-15/igt@kms_fbcon_fbt@fbc-suspend.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][189] ([i915#9878])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@display-4x:
    - shard-tglu:         NOTRUN -> [SKIP][190] ([i915#1839])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-4/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          NOTRUN -> [SKIP][191] ([i915#658]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-tglu-1:       NOTRUN -> [SKIP][192] ([i915#658])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-busy-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@kms_flip@2x-busy-flip.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#14544] / [i915#9934])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-dg2:          NOTRUN -> [SKIP][195] ([i915#9934]) +3 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][196] ([i915#12745] / [i915#4839] / [i915#6113])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-glk:          NOTRUN -> [INCOMPLETE][197] ([i915#12745] / [i915#4839]) +1 other test incomplete
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][198] ([i915#12745]) +2 other tests incomplete
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#9934]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#9934]) +8 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
    - shard-tglu-1:       NOTRUN -> [SKIP][201] ([i915#3637] / [i915#9934]) +3 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +5 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-fences:
    - shard-mtlp:         NOTRUN -> [SKIP][203] ([i915#8381])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html
    - shard-dg2:          NOTRUN -> [SKIP][204] ([i915#8381])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@kms_flip@flip-vs-fences.html
    - shard-dg1:          NOTRUN -> [SKIP][205] ([i915#8381])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_flip@flip-vs-fences.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][206] ([i915#12745] / [i915#4839])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][207] ([i915#12745])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
    - shard-rkl:          [PASS][208] -> [INCOMPLETE][209] ([i915#6113]) +1 other test incomplete
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#15643])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][211] ([i915#15643]) +1 other test skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][212] ([i915#15643]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][214] ([i915#15643]) +3 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][215] ([i915#15643] / [i915#5190]) +2 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#15104]) +3 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][217] ([i915#15104])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][218] ([i915#15104])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][219] ([i915#8708]) +2 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][220] ([i915#8708]) +3 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][221] +16 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#5354]) +16 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-mtlp:         NOTRUN -> [SKIP][223] ([i915#1825]) +9 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][224] ([i915#8708]) +7 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][225] ([i915#5439])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-tglu:         NOTRUN -> [SKIP][226] ([i915#5439])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][227] ([i915#15102]) +1 other test skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-rkl:          NOTRUN -> [SKIP][228] ([i915#15102] / [i915#3023]) +12 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
    - shard-tglu:         NOTRUN -> [SKIP][229] +50 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
    - shard-tglu:         NOTRUN -> [SKIP][230] ([i915#15102]) +12 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#15102] / [i915#3458]) +4 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
    - shard-dg1:          NOTRUN -> [SKIP][232] ([i915#15102] / [i915#3458]) +3 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][233] ([i915#15102]) +12 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-glk11:        NOTRUN -> [SKIP][234] +76 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#14544] / [i915#1825]) +7 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#1825]) +28 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][237] ([i915#14544] / [i915#15102] / [i915#3023])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html

  * igt@kms_hdr@bpc-switch:
    - shard-dg2:          NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_hdr@bpc-switch.html
    - shard-dg1:          NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +1 other test skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-19/igt@kms_hdr@bpc-switch.html
    - shard-tglu:         NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-3/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-mtlp:         NOTRUN -> [SKIP][241] ([i915#12713])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg2:          NOTRUN -> [SKIP][242] ([i915#12713])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
    - shard-rkl:          NOTRUN -> [SKIP][243] ([i915#12713])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#12713])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html
    - shard-tglu:         NOTRUN -> [SKIP][245] ([i915#12713])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-tglu-1:       NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][248] ([i915#15458])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][249] ([i915#13688])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#15458])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][251] ([i915#15458])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#15458]) +1 other test skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][253] ([i915#15458])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#15638] / [i915#15722])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_lease@lease-invalid-plane:
    - shard-dg1:          [PASS][255] -> [DMESG-WARN][256] ([i915#4423]) +7 other tests dmesg-warn
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-19/igt@kms_lease@lease-invalid-plane.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_lease@lease-invalid-plane.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#15815])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-tglu:         NOTRUN -> [SKIP][258] ([i915#15815])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][259] ([i915#13409] / [i915#13476])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-rkl:          NOTRUN -> [SKIP][260] ([i915#14544] / [i915#14712])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#14712])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#14712])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#14712])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-tglu-1:       NOTRUN -> [SKIP][264] ([i915#15709]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#15709])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#15709])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-rkl:          NOTRUN -> [SKIP][267] ([i915#15608]) +1 other test skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][268] ([i915#15709]) +2 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#15709]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb:
    - shard-glk10:        NOTRUN -> [FAIL][270] ([i915#10647] / [i915#12177])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [FAIL][271] ([i915#10647]) +1 other test fail
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-4:
    - shard-mtlp:         NOTRUN -> [SKIP][272] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][273] ([i915#11614] / [i915#3582]) +3 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][274] ([i915#3555]) +5 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][275] ([i915#13958]) +2 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#14259])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][277] ([i915#14259])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#14259])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#15329]) +3 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#14544] / [i915#15329]) +3 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
    - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#15329]) +4 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][282] ([i915#15329]) +4 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][283] ([i915#9812])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#5354]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_pm_backlight@fade-with-suspend.html
    - shard-tglu:         NOTRUN -> [SKIP][285] ([i915#9812])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-10/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-rkl:          NOTRUN -> [SKIP][286] ([i915#15948])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][287] ([i915#15739])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][288] ([i915#9340])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][289] ([i915#3828])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-tglu:         NOTRUN -> [SKIP][290] ([i915#3828])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-dg2:          [PASS][291] -> [SKIP][292] ([i915#15073])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-1/igt@kms_pm_rpm@dpms-non-lpsp.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][293] -> [SKIP][294] ([i915#14544] / [i915#15073])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          NOTRUN -> [SKIP][295] ([i915#15073])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][296] -> [SKIP][297] ([i915#15073])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
    - shard-tglu-1:       NOTRUN -> [SKIP][298] ([i915#15073]) +1 other test skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-tglu:         NOTRUN -> [SKIP][299] ([i915#15403])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_pm_rpm@package-g7.html
    - shard-rkl:          NOTRUN -> [SKIP][300] ([i915#15403])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg1:          [PASS][301] -> [SKIP][302] ([i915#12916] / [i915#4423])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-16/igt@kms_pm_rpm@system-suspend-idle.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-glk:          [PASS][303] -> [INCOMPLETE][304] ([i915#10553])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][305] ([i915#6524] / [i915#6805])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@kms_prime@basic-modeset-hybrid.html
    - shard-rkl:          NOTRUN -> [SKIP][306] ([i915#6524])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html
    - shard-dg1:          NOTRUN -> [SKIP][307] ([i915#6524])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html
    - shard-tglu:         NOTRUN -> [SKIP][308] ([i915#6524])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html
    - shard-mtlp:         NOTRUN -> [SKIP][309] ([i915#6524])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html

  * igt@kms_prime@d3hot:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#14544] / [i915#6524])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-tglu:         NOTRUN -> [SKIP][311] ([i915#11520]) +9 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-glk11:        NOTRUN -> [SKIP][312] ([i915#11520]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][313] ([i915#11520]) +9 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][314] ([i915#11520]) +6 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
    - shard-snb:          NOTRUN -> [SKIP][315] ([i915#11520]) +5 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-snb4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][316] ([i915#9808]) +3 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-rkl:          NOTRUN -> [SKIP][317] ([i915#11520] / [i915#14544])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][318] ([i915#11520]) +8 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-mtlp:         NOTRUN -> [SKIP][319] ([i915#12316]) +3 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-dg1:          NOTRUN -> [SKIP][320] ([i915#11520]) +6 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk10:        NOTRUN -> [SKIP][321] ([i915#11520]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-tglu-1:       NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-dg2:          NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +14 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
    - shard-glk:          NOTRUN -> [SKIP][324] +366 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk9/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-mtlp:         NOTRUN -> [SKIP][325] ([i915#9688]) +10 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-rkl:          NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +20 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_psr@fbc-psr2-primary-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +10 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-13/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@pr-sprite-plane-move:
    - shard-tglu:         NOTRUN -> [SKIP][328] ([i915#9732]) +16 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@kms_psr@pr-sprite-plane-move.html

  * igt@kms_psr@psr-cursor-plane-move:
    - shard-tglu-1:       NOTRUN -> [SKIP][329] ([i915#9732]) +9 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-rkl:          NOTRUN -> [SKIP][330] ([i915#15949])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][331] ([i915#15500])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-rkl:          NOTRUN -> [SKIP][332] ([i915#5289])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-mtlp:         NOTRUN -> [SKIP][333] ([i915#5289])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][334] ([i915#12755] / [i915#15867] / [i915#5190])
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2:          NOTRUN -> [SKIP][335] ([i915#12755] / [i915#15867])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-dg2:          NOTRUN -> [SKIP][336] ([i915#3555]) +1 other test skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-glk:          NOTRUN -> [ABORT][337] ([i915#13179]) +1 other test abort
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk1/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][338] ([i915#15243] / [i915#3555])
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_vrr@flip-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][339] ([i915#15243] / [i915#3555]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_vrr@flip-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][340] ([i915#3555]) +1 other test skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@kms_vrr@flip-dpms.html
    - shard-mtlp:         NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8808])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-5/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-rkl:          NOTRUN -> [SKIP][342] ([i915#9906])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html
    - shard-tglu-1:       NOTRUN -> [SKIP][343] ([i915#9906])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][344] ([i915#2436])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@perf_pmu@module-unload:
    - shard-glk:          NOTRUN -> [ABORT][345] ([i915#15778])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk6/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-rkl:          NOTRUN -> [SKIP][346] ([i915#8516])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html
    - shard-tglu:         NOTRUN -> [SKIP][347] ([i915#8516])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html

  * igt@perf_pmu@rc6@other-idle-gt0:
    - shard-tglu-1:       NOTRUN -> [SKIP][348] ([i915#8516])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html

  * igt@prime_vgem@basic-fence-flip:
    - shard-dg2:          NOTRUN -> [SKIP][349] ([i915#3708])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-read:
    - shard-rkl:          NOTRUN -> [SKIP][350] ([i915#3291] / [i915#3708])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@prime_vgem@basic-read.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-rkl:          NOTRUN -> [SKIP][351] ([i915#14544] / [i915#9917])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-tglu:         NOTRUN -> [FAIL][352] ([i915#12910]) +9 other tests fail
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@sysfs_timeslice_duration@idempotent@vcs0:
    - shard-snb:          NOTRUN -> [SKIP][353] +103 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-snb6/igt@sysfs_timeslice_duration@idempotent@vcs0.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-snb:          [ABORT][354] ([i915#15840]) -> [PASS][355] +1 other test pass
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-snb6/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_eio@kms:
    - shard-rkl:          [DMESG-WARN][356] ([i915#13363]) -> [PASS][357]
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@gem_eio@kms.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@gem_eio@kms.html
    - shard-tglu:         [DMESG-WARN][358] ([i915#13363]) -> [PASS][359]
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-8/igt@gem_eio@kms.html
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-7/igt@gem_eio@kms.html

  * igt@gem_exec_big@single:
    - shard-mtlp:         [FAIL][360] ([i915#15871]) -> [PASS][361]
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-2/igt@gem_exec_big@single.html
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-6/igt@gem_exec_big@single.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][362] ([i915#13356]) -> [PASS][363] +1 other test pass
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_softpin@noreloc-s3:
    - shard-rkl:          [ABORT][364] ([i915#15131]) -> [PASS][365]
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-1/igt@gem_softpin@noreloc-s3.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@gem_softpin@noreloc-s3.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [INCOMPLETE][366] ([i915#13356] / [i915#13820]) -> [PASS][367] +1 other test pass
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglu:         [WARN][368] ([i915#13790] / [i915#2681]) -> [PASS][369] +1 other test pass
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-dg1:          [DMESG-WARN][370] ([i915#4391] / [i915#4423]) -> [PASS][371]
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1:
    - shard-glk:          [FAIL][372] ([i915#14888]) -> [PASS][373]
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3:
    - shard-dg2:          [FAIL][374] ([i915#14888]) -> [PASS][375] +1 other test pass
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3.html
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-rkl:          [FAIL][376] ([i915#13566]) -> [PASS][377] +1 other test pass
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][378] ([i915#13566]) -> [PASS][379] +1 other test pass
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1:
    - shard-snb:          [FAIL][380] ([i915#13027]) -> [PASS][381] +1 other test pass
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-snb1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-snb5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
    - shard-tglu:         [FAIL][382] ([i915#13027]) -> [PASS][383] +1 other test pass
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-8/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-8/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-mtlp:         [SKIP][384] ([i915#15672]) -> [PASS][385]
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-5/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render:
    - shard-dg2:          [FAIL][386] ([i915#15389]) -> [PASS][387]
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          [FAIL][388] ([i915#15389] / [i915#6880]) -> [PASS][389] +1 other test pass
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          [SKIP][390] ([i915#3555] / [i915#8228]) -> [PASS][391] +2 other tests pass
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_hdr@static-toggle.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][392] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][393]
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_plane@pixel-format-linear-modifier:
    - shard-dg1:          [DMESG-WARN][394] ([i915#4423]) -> [PASS][395] +3 other tests pass
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-13/igt@kms_plane@pixel-format-linear-modifier.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_plane@pixel-format-linear-modifier.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-rkl:          [SKIP][396] ([i915#15073]) -> [PASS][397]
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg1:          [SKIP][398] ([i915#15073]) -> [PASS][399] +2 other tests pass
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_setmode@basic:
    - shard-tglu-1:       [FAIL][400] ([i915#15106]) -> [PASS][401] +2 other tests pass
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-1/igt@kms_setmode@basic.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-1/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
    - shard-rkl:          [FAIL][402] ([i915#15106]) -> [PASS][403] +2 other tests pass
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-mtlp:         [FAIL][404] ([i915#15106]) -> [PASS][405] +2 other tests pass
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_setmode@basic@pipe-c-hdmi-a-3:
    - shard-dg2:          [FAIL][406] ([i915#15106]) -> [PASS][407] +2 other tests pass
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-3/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-6/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html

  * igt@perf_pmu@busy-double-start:
    - shard-mtlp:         [FAIL][408] ([i915#4349]) -> [PASS][409] +2 other tests pass
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-8/igt@perf_pmu@busy-double-start.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@perf_pmu@busy-double-start.html

  * igt@perf_pmu@most-busy-idle-check-all:
    - shard-mtlp:         [FAIL][410] -> [PASS][411] +1 other test pass
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all.html
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html

  
#### Warnings ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-rkl:          [SKIP][412] ([i915#8411]) -> [SKIP][413] ([i915#14544] / [i915#8411]) +1 other test skip
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@dmabuf@all-tests:
    - shard-rkl:          [SKIP][414] ([i915#15931]) -> [SKIP][415] ([i915#14544] / [i915#15931])
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@dmabuf@all-tests.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@dmabuf@all-tests.html

  * igt@gem_ccs@suspend-resume:
    - shard-rkl:          [SKIP][416] ([i915#9323]) -> [SKIP][417] ([i915#14544] / [i915#9323])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@gem_ccs@suspend-resume.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-ext-set-pat:
    - shard-rkl:          [SKIP][418] ([i915#14544] / [i915#8562]) -> [SKIP][419] ([i915#8562])
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@gem_create@create-ext-set-pat.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-rkl:          [SKIP][420] ([i915#6334]) -> [SKIP][421] ([i915#14544] / [i915#6334]) +1 other test skip
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          [SKIP][422] ([i915#3281]) -> [SKIP][423] ([i915#14544] / [i915#3281]) +4 other tests skip
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          [SKIP][424] ([i915#4613]) -> [SKIP][425] ([i915#14544] / [i915#4613]) +2 other tests skip
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@massive-random:
    - shard-rkl:          [SKIP][426] ([i915#14544] / [i915#4613]) -> [SKIP][427] ([i915#4613])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@gem_lmem_swapping@massive-random.html

  * igt@gem_madvise@dontneed-before-pwrite:
    - shard-rkl:          [SKIP][428] ([i915#3282]) -> [SKIP][429] ([i915#14544] / [i915#3282]) +2 other tests skip
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-1/igt@gem_madvise@dontneed-before-pwrite.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-rkl:          [INCOMPLETE][430] ([i915#13356]) -> [ABORT][431] ([i915#15131])
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-rkl:          [SKIP][432] ([i915#14544] / [i915#2527]) -> [SKIP][433] ([i915#2527])
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-rkl:          [SKIP][434] ([i915#2527]) -> [SKIP][435] ([i915#14544] / [i915#2527])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html

  * igt@i915_module_load@fault-injection:
    - shard-dg1:          [ABORT][436] ([i915#11814] / [i915#15481]) -> [ABORT][437] ([i915#11814]) +1 other test abort
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-18/igt@i915_module_load@fault-injection.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-12/igt@i915_module_load@fault-injection.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          [SKIP][438] ([i915#6412]) -> [SKIP][439] ([i915#14544] / [i915#6412])
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@i915_module_load@resize-bar.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-rkl:          [SKIP][440] ([i915#8399]) -> [SKIP][441] ([i915#14544] / [i915#8399])
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_query@hwconfig_table:
    - shard-rkl:          [SKIP][442] ([i915#14544] / [i915#6245]) -> [SKIP][443] ([i915#6245])
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@i915_query@hwconfig_table.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@i915_query@hwconfig_table.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-rkl:          [SKIP][444] ([i915#14544] / [i915#5286]) -> [SKIP][445] ([i915#5286])
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-rkl:          [SKIP][446] ([i915#14544] / [i915#3638]) -> [SKIP][447] ([i915#3638])
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-rkl:          [SKIP][448] ([i915#3638]) -> [SKIP][449] ([i915#14544] / [i915#3638]) +1 other test skip
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg1:          [SKIP][450] ([i915#4538]) -> [SKIP][451] ([i915#4423] / [i915#4538])
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-dg1:          [SKIP][452] ([i915#4423] / [i915#6095]) -> [SKIP][453] ([i915#6095])
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][454] ([i915#12313]) -> [SKIP][455] ([i915#12313] / [i915#14544])
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][456] ([i915#12313] / [i915#14544]) -> [SKIP][457] ([i915#12313]) +1 other test skip
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][458] ([i915#14098] / [i915#6095]) -> [SKIP][459] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][460] ([i915#6095]) -> [SKIP][461] ([i915#14544] / [i915#6095]) +3 other tests skip
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][462] ([i915#14544] / [i915#6095]) -> [SKIP][463] ([i915#6095]) +1 other test skip
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][464] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][465] ([i915#14098] / [i915#6095]) +1 other test skip
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-rkl:          [SKIP][466] -> [SKIP][467] ([i915#14544]) +11 other tests skip
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@kms_chamelium_color@ctm-green-to-red.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-rkl:          [SKIP][468] ([i915#11151] / [i915#7828]) -> [SKIP][469] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-2/igt@kms_chamelium_edid@vga-edid-read.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-dg1:          [SKIP][470] ([i915#11151] / [i915#7828]) -> [SKIP][471] ([i915#11151] / [i915#4423] / [i915#7828])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-18/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-rkl:          [SKIP][472] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][473] ([i915#11151] / [i915#7828]) +1 other test skip
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_content_protection@atomic:
    - shard-rkl:          [SKIP][474] ([i915#15865]) -> [SKIP][475] ([i915#14544] / [i915#15865])
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@kms_content_protection@atomic.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-rkl:          [SKIP][476] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][477] ([i915#15330] / [i915#3116])
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-rkl:          [SKIP][478] ([i915#15330]) -> [SKIP][479] ([i915#14544] / [i915#15330])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          [SKIP][480] ([i915#14544] / [i915#15865]) -> [SKIP][481] ([i915#15865])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][482] ([i915#9433]) -> [SKIP][483] ([i915#15865])
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-12/igt@kms_content_protection@mei-interface.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-dg1:          [SKIP][484] ([i915#3555]) -> [SKIP][485] ([i915#3555] / [i915#4423])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-rkl:          [SKIP][486] ([i915#3555]) -> [SKIP][487] ([i915#14544] / [i915#3555]) +2 other tests skip
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-rkl:          [SKIP][488] ([i915#13049] / [i915#14544]) -> [SKIP][489] ([i915#13049])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-rkl:          [SKIP][490] ([i915#14544] / [i915#4103]) -> [SKIP][491] ([i915#4103])
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-rkl:          [SKIP][492] ([i915#13748]) -> [SKIP][493] ([i915#13748] / [i915#14544])
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-rkl:          [SKIP][494] ([i915#3840]) -> [SKIP][495] ([i915#14544] / [i915#3840]) +1 other test skip
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-rkl:          [SKIP][496] ([i915#3555] / [i915#3840]) -> [SKIP][497] ([i915#14544] / [i915#3555] / [i915#3840])
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_feature_discovery@display-4x:
    - shard-rkl:          [SKIP][498] ([i915#1839]) -> [SKIP][499] ([i915#14544] / [i915#1839])
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-rkl:          [SKIP][500] ([i915#9934]) -> [SKIP][501] ([i915#14544] / [i915#9934])
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-rkl:          [SKIP][502] ([i915#14544] / [i915#9934]) -> [SKIP][503] ([i915#9934]) +3 other tests skip
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg1:          [SKIP][504] ([i915#15643] / [i915#4423]) -> [SKIP][505] ([i915#15643])
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
    - shard-rkl:          [SKIP][506] ([i915#15643]) -> [SKIP][507] ([i915#14544] / [i915#15643])
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
    - shard-dg1:          [SKIP][508] -> [SKIP][509] ([i915#4423]) +2 other tests skip
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][510] ([i915#15102]) -> [SKIP][511] ([i915#14544] / [i915#15102])
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
    - shard-rkl:          [SKIP][512] ([i915#15102] / [i915#3023]) -> [SKIP][513] ([i915#14544] / [i915#15102] / [i915#3023]) +10 other tests skip
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
    - shard-dg2:          [SKIP][514] ([i915#15102] / [i915#3458]) -> [SKIP][515] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][516] ([i915#1825]) -> [SKIP][517] ([i915#14544] / [i915#1825]) +10 other tests skip
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][518] ([i915#14544] / [i915#1825]) -> [SKIP][519] ([i915#1825]) +11 other tests skip
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][520] ([i915#14544] / [i915#15102]) -> [SKIP][521] ([i915#15102])
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][522] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][523] ([i915#15102] / [i915#3458]) +3 other tests skip
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
    - shard-rkl:          [SKIP][524] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][525] ([i915#15102] / [i915#3023]) +5 other tests skip
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          [SKIP][526] ([i915#15458]) -> [SKIP][527] ([i915#14544] / [i915#15458])
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-rkl:          [SKIP][528] ([i915#14712]) -> [SKIP][529] ([i915#14544] / [i915#14712])
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
    - shard-rkl:          [SKIP][530] ([i915#15709]) -> [SKIP][531] ([i915#14544] / [i915#15709]) +1 other test skip
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][532] ([i915#14544] / [i915#15709]) -> [SKIP][533] ([i915#15709])
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
    - shard-rkl:          [SKIP][534] ([i915#15329]) -> [SKIP][535] ([i915#14544] / [i915#15329]) +3 other tests skip
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          [SKIP][536] ([i915#14544] / [i915#5354]) -> [SKIP][537] ([i915#5354])
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_pm_backlight@fade.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         [SKIP][538] ([i915#15128]) -> [FAIL][539] ([i915#15752])
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@pc8-residency:
    - shard-rkl:          [SKIP][540] ([i915#14544]) -> [SKIP][541] +3 other tests skip
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_pm_rpm@pc8-residency.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_pm_rpm@pc8-residency.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-rkl:          [SKIP][542] ([i915#11520]) -> [SKIP][543] ([i915#11520] / [i915#14544]) +3 other tests skip
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-dg1:          [SKIP][544] ([i915#11520]) -> [SKIP][545] ([i915#11520] / [i915#4423])
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-18/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          [SKIP][546] ([i915#11520] / [i915#14544]) -> [SKIP][547] ([i915#11520])
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-sprite-mmap-gtt:
    - shard-rkl:          [SKIP][548] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][549] ([i915#1072] / [i915#9732]) +4 other tests skip
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-4/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-dg1:          [SKIP][550] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][551] ([i915#1072] / [i915#9732])
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-render.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-dg1-14/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@psr-cursor-mmap-cpu:
    - shard-rkl:          [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_psr@psr-cursor-mmap-cpu.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-rkl:          [SKIP][554] ([i915#5289]) -> [SKIP][555] ([i915#14544] / [i915#5289])
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_vrr@negative-basic:
    - shard-rkl:          [SKIP][556] ([i915#14544] / [i915#3555] / [i915#9906]) -> [SKIP][557] ([i915#3555] / [i915#9906])
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-6/igt@kms_vrr@negative-basic.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-3/igt@kms_vrr@negative-basic.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          [SKIP][558] ([i915#2435]) -> [SKIP][559] ([i915#14544] / [i915#2435])
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html

  * igt@perf_pmu@module-unload:
    - shard-mtlp:         [INCOMPLETE][560] ([i915#13520]) -> [ABORT][561] ([i915#15778])
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-mtlp-4/igt@perf_pmu@module-unload.html
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-mtlp-4/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@coherency-gtt:
    - shard-rkl:          [SKIP][562] ([i915#3708]) -> [SKIP][563] ([i915#14544] / [i915#3708])
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-4/igt@prime_vgem@coherency-gtt.html
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@prime_vgem@coherency-gtt.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-rkl:          [SKIP][564] ([i915#9917]) -> [SKIP][565] ([i915#14544] / [i915#9917])
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18373/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  
  [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
  [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8874 -> IGTPW_15067
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18373: aea2c496abcf55b647c14fe720bfc4ea555aac6a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15067: 7551ec308054c4588472aef64e9208f4199ff393 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15067/index.html

[-- Attachment #2: Type: text/html, Size: 188656 bytes --]

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

* ✗ Xe.CI.FULL: failure for tests/intel/xe_vm: Add support for overcommit tests (rev9)
  2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
                   ` (4 preceding siblings ...)
  2026-04-28 10:16 ` ✓ i915.CI.Full: " Patchwork
@ 2026-04-28 11:11 ` Patchwork
  2026-04-28 12:17   ` Thomas, Sobin
  2026-04-28 13:36   ` Thomas, Sobin
  5 siblings, 2 replies; 9+ messages in thread
From: Patchwork @ 2026-04-28 11:11 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 34027 bytes --]

== Series Details ==

Series: tests/intel/xe_vm: Add support for overcommit tests (rev9)
URL   : https://patchwork.freedesktop.org/series/163579/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8874_FULL -> XEIGTPW_15067_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_15067_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_15067_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 (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in XEIGTPW_15067_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer (NEW):
    - shard-lnl:          NOTRUN -> [SKIP][1] +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html

  
New tests
---------

  New tests have been introduced between XEIGT_8874_FULL and XEIGTPW_15067_FULL:

### New IGT tests (5) ###

  * igt@xe_vm@overcommit-fault-vram-lr:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 12.55] s

  * igt@xe_vm@overcommit-fault-vram-lr-no-overcommit:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 5.41] s

  * igt@xe_vm@overcommit-nonfault-vram-lr-defer:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.00] s

  * igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.99] s

  * igt@xe_vm@overcommit-nonfault-vram-no-lr:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.23] s

  

Known issues
------------

  Here are the changes found in XEIGTPW_15067_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2327]) +5 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#607] / [Intel XE#7361])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#1124]) +6 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2328] / [Intel XE#7367])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#610] / [Intel XE#7387])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2887]) +13 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][8] -> [INCOMPLETE][9] ([Intel XE#7084]) +1 other test incomplete
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#3432]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2252]) +7 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2390] / [Intel XE#6974])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#6974]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][15] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#7642])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2321] / [Intel XE#7355])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2320]) +4 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#1508])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#1340] / [Intel XE#7435])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2244]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#6126] / [Intel XE#776])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2373] / [Intel XE#7448])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2374] / [Intel XE#6128])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][25] -> [FAIL][26] ([Intel XE#301]) +2 other tests fail
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#7179])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#4141]) +15 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2311]) +29 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2352] / [Intel XE#7399])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2350] / [Intel XE#7503])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2313]) +26 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#4298] / [Intel XE#5873])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2486])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#6912] / [Intel XE#7375])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7130]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#7283]) +5 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2393])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2938] / [Intel XE#7376])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#7794])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#3309] / [Intel XE#7368])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2505] / [Intel XE#7447])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#1489]) +5 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2387] / [Intel XE#7429])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_psr@fbc-psr-dpms.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#7795])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2413])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_sharpness_filter@filter-tap:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#6503]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_sharpness_filter@filter-tap.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1499]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_vrr@max-min.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7636]) +10 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_evict@evict-small-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#7140]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#7136]) +12 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#6874]) +32 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#7138]) +7 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html

  * igt@xe_media_fill@media-fill:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_media_fill@media-fill.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#6964]) +4 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_page_reclaim@prl-max-entries:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7793])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@xe_page_reclaim@prl-max-entries.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#1420] / [Intel XE#7590])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@xa-app-transient-media-on:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#7590]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html

  * igt@xe_peer2peer@read:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#5694] / [Intel XE#7370])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@xe_pxp@pxp-optout.html

  * igt@xe_query@multigpu-query-config:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#944])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_query@multigpu-query-config.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-bmg:          NOTRUN -> [FAIL][72] ([Intel XE#6569]) +1 other test fail
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][73] ([Intel XE#7571]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [FAIL][75] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp2:
    - shard-bmg:          [INCOMPLETE][77] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][78] +1 other test pass
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_flip@flip-vs-suspend@a-dp2.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-dp2.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][79] ([Intel XE#7340]) -> [PASS][80] +1 other test pass
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-bmg:          [FAIL][81] ([Intel XE#5937]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [DMESG-WARN][83] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-8/igt@xe_survivability@runtime-survivability.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@xe_survivability@runtime-survivability.html

  
#### Warnings ####

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][85] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][86] ([Intel XE#301])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][87] ([Intel XE#3544]) -> [SKIP][88] ([Intel XE#3374] / [Intel XE#3544])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][89] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][90] ([Intel XE#2509] / [Intel XE#7437])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
  [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
  [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
  [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * IGT: IGT_8874 -> IGTPW_15067
  * Linux: xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf -> xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a

  IGTPW_15067: 7551ec308054c4588472aef64e9208f4199ff393 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf
  xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a: aea2c496abcf55b647c14fe720bfc4ea555aac6a

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/index.html

[-- Attachment #2: Type: text/html, Size: 36633 bytes --]

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

* RE: ✗ Xe.CI.FULL: failure for tests/intel/xe_vm: Add support for overcommit tests (rev9)
  2026-04-28 11:11 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-28 12:17   ` Thomas, Sobin
  2026-04-28 13:36   ` Thomas, Sobin
  1 sibling, 0 replies; 9+ messages in thread
From: Thomas, Sobin @ 2026-04-28 12:17 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org,
	I915-ci-infra@lists.freedesktop.org
  Cc: Konieczny, Kamil

[-- Attachment #1: Type: text/plain, Size: 30631 bytes --]

Hi

These errors are not related to the patch shared .
Please approve.

Regards
Sobin Thomas

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Tuesday, April 28, 2026 4:42 PM
To: Thomas, Sobin <sobin.thomas@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.FULL: failure for tests/intel/xe_vm: Add support for overcommit tests (rev9)

Patch Details
Series:
tests/intel/xe_vm: Add support for overcommit tests (rev9)
URL:
https://patchwork.freedesktop.org/series/163579/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/index.html
CI Bug Log - changes from XEIGT_8874_FULL -> XEIGTPW_15067_FULL
Summary

FAILURE

Serious unknown changes coming with XEIGTPW_15067_FULL absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15067_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (2 -> 2)

No changes in participating hosts

Possible new issues

Here are the unknown changes that may have been introduced in XEIGTPW_15067_FULL:

IGT changes
Possible regressions

  *   igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer (NEW):
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html> +4 other tests skip

New tests

New tests have been introduced between XEIGT_8874_FULL and XEIGTPW_15067_FULL:

New IGT tests (5)

  *   igt@xe_vm@overcommit-fault-vram-lr:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 12.55] s
  *   igt@xe_vm@overcommit-fault-vram-lr-no-overcommit:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 5.41] s
  *   igt@xe_vm@overcommit-nonfault-vram-lr-defer:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 2.00] s
  *   igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 2.99] s
  *   igt@xe_vm@overcommit-nonfault-vram-no-lr:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 2.23] s

Known issues

Here are the changes found in XEIGTPW_15067_FULL that come from known issues:

IGT changes
Issues hit

  *   igt@kms_big_fb@4-tiled-64bpp-rotate-90:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
  *   igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607> / Intel XE#7361<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361>)
  *   igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +6 other tests skip
  *   igt@kms_big_fb@yf-tiled-addfb:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328> / Intel XE#7367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367>)
  *   igt@kms_big_fb@yf-tiled-addfb-size-overflow:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610> / Intel XE#7387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387>)
  *   igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +13 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#7084<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084>) +1 other test incomplete
  *   igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test skip
  *   igt@kms_cdclk@mode-transition-all-outputs:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724> / Intel XE#7449<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449>) +1 other test skip
  *   igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +7 other tests skip
  *   igt@kms_content_protection@dp-mst-lic-type-1:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390> / Intel XE#6974<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974>)
  *   igt@kms_content_protection@dp-mst-type-0-hdcp14:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html> (Intel XE#6974<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974>) +1 other test skip
  *   igt@kms_content_protection@srm@pipe-a-dp-2:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304> / Intel XE#7374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374>) +1 other test fail
  *   igt@kms_content_protection@type1:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_content_protection@type1.html> (Intel XE#7642<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642>)
  *   igt@kms_cursor_crc@cursor-offscreen-512x170:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321> / Intel XE#7355<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355>)
  *   igt@kms_cursor_crc@cursor-random-32x32:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +4 other tests skip
  *   igt@kms_dirtyfb@psr-dirtyfb-ioctl:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (Intel XE#1508<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>)
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340> / Intel XE#7435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435>)
  *   igt@kms_dsc@dsc-with-output-formats:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
  *   igt@kms_fbcon_fbt@psr-suspend:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#6126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126> / Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
  *   igt@kms_feature_discovery@display-3x:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373> / Intel XE#7448<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448>)
  *   igt@kms_feature_discovery@psr2:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_feature_discovery@psr2.html> (Intel XE#2374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374> / Intel XE#6128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128>)
  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +2 other tests fail
  *   igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html> (Intel XE#7179<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> (Intel XE#7178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178> / Intel XE#7351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +15 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +29 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html> (Intel XE#7061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061> / Intel XE#7356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#2352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352> / Intel XE#7399<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399>)
  *   igt@kms_frontbuffer_tracking@plane-fbc-rte:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#2350<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350> / Intel XE#7503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503>)
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +26 other tests skip
  *   igt@kms_joiner@basic-max-non-joiner:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_joiner@basic-max-non-joiner.html> (Intel XE#4298<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298> / Intel XE#5873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873>)
  *   igt@kms_panel_fitting@atomic-fastset:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
  *   igt@kms_pipe_stress@stress-xrgb8888-yftiled:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html> (Intel XE#6912<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912> / Intel XE#7375<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375>)
  *   igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html> (Intel XE#7130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130>) +1 other test skip
  *   igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html> (Intel XE#7283<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>) +5 other tests skip
  *   igt@kms_plane_lowres@tiling-y:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html> (Intel XE#2393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>)
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#6886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886>) +9 other tests skip
  *   igt@kms_pm_backlight@brightness-with-dpms:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html> (Intel XE#2938<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938> / Intel XE#7376<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376>)
  *   igt@kms_pm_dc@dc3co-vpb-simulation:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#7794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794>)
  *   igt@kms_pm_dc@dc5-retention-flops:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309> / Intel XE#7368<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368>)
  *   igt@kms_pm_dc@deep-pkgc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2505<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505> / Intel XE#7447<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447>)
  *   igt@kms_pm_rpm@dpms-lpsp:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#7383<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
  *   igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 other tests skip
  *   igt@kms_psr2_su@page_flip-xrgb8888:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_psr2_su@page_flip-xrgb8888.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387> / Intel XE#7429<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429>)
  *   igt@kms_psr@fbc-psr-dpms:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_psr@fbc-psr-dpms.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +10 other tests skip
  *   igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#7795<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795>)
  *   igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904> / Intel XE#7342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342>) +2 other tests skip
  *   igt@kms_scaling_modes@scaling-mode-full:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>)
  *   igt@kms_sharpness_filter@filter-tap:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_sharpness_filter@filter-tap.html> (Intel XE#6503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>) +2 other tests skip
  *   igt@kms_vrr@max-min:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_vrr@max-min.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
  *   igt@xe_eudebug@basic-vm-bind-metadata-discovery:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html> (Intel XE#7636<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636>) +10 other tests skip
  *   igt@xe_evict@evict-small-multi-queue-cm:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html> (Intel XE#7140<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140>) +1 other test skip
  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322> / Intel XE#7372<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372>) +8 other tests skip
  *   igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html> (Intel XE#7136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +12 other tests skip
  *   igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html> (Intel XE#6874<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +32 other tests skip
  *   igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html> (Intel XE#7138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +7 other tests skip
  *   igt@xe_media_fill@media-fill:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_media_fill@media-fill.html> (Intel XE#2459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459> / Intel XE#2596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596> / Intel XE#7321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321> / Intel XE#7453<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453>)
  *   igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html> (Intel XE#6964<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964>) +4 other tests skip
  *   igt@xe_oa@oa-tlb-invalidate:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248> / Intel XE#7325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325> / Intel XE#7393<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393>)
  *   igt@xe_page_reclaim@prl-max-entries:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-3/igt@xe_page_reclaim@prl-max-entries.html> (Intel XE#7793<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793>)
  *   igt@xe_pat@pat-index-xehpc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420> / Intel XE#7590<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590>)
  *   igt@xe_pat@xa-app-transient-media-on:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html> (Intel XE#7590<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590>) +1 other test skip
  *   igt@xe_peer2peer@read:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@xe_peer2peer@read.html> (Intel XE#2427<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427> / Intel XE#6953<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953> / Intel XE#7326<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326> / Intel XE#7353<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353>)
  *   igt@xe_pm@d3cold-i2c:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@xe_pm@d3cold-i2c.html> (Intel XE#5694<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694> / Intel XE#7370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370>)
  *   igt@xe_pm@s4-d3cold-basic-exec:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_pm@s4-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#7370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370>) +1 other test skip
  *   igt@xe_pxp@pxp-optout:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@xe_pxp@pxp-optout.html> (Intel XE#4733<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733> / Intel XE#7417<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417>) +2 other tests skip
  *   igt@xe_query@multigpu-query-config:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_query@multigpu-query-config.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
  *   igt@xe_sriov_flr@flr-twice:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html> (Intel XE#6569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569>) +1 other test fail

Possible fixes

  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> (Intel XE#7571<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html>
  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html>
  *   igt@kms_flip@flip-vs-suspend@a-dp2:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_flip@flip-vs-suspend@a-dp2.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-dp2.html> +1 other test pass
  *   igt@kms_pm_dc@dc6-psr:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html> (Intel XE#7340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html> +1 other test pass
  *   igt@xe_pmu@fn-engine-activity-load:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html> (Intel XE#5937<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html>
  *   igt@xe_survivability@runtime-survivability:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-8/igt@xe_survivability@runtime-survivability.html> (Intel XE#6627<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627> / Intel XE#7419<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@xe_survivability@runtime-survivability.html>

Warnings

  *   igt@kms_flip@flip-vs-expired-vblank-interruptible:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>)
  *   igt@kms_hdr@brightness-with-hdr:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
  *   igt@kms_tiled_display@basic-test-pattern-with-chamelium:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426> / Intel XE#5848<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2509<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509> / Intel XE#7437<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437>)

{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).

Build changes

  *   IGT: IGT_8874 -> IGTPW_15067
  *   Linux: xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf -> xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a

IGTPW_15067: 7551ec308054c4588472aef64e9208f4199ff393 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf
xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a: aea2c496abcf55b647c14fe720bfc4ea555aac6a

[-- Attachment #2: Type: text/html, Size: 68914 bytes --]

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

* RE: ✗ Xe.CI.FULL: failure for tests/intel/xe_vm: Add support for overcommit tests (rev9)
  2026-04-28 11:11 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-04-28 12:17   ` Thomas, Sobin
@ 2026-04-28 13:36   ` Thomas, Sobin
  1 sibling, 0 replies; 9+ messages in thread
From: Thomas, Sobin @ 2026-04-28 13:36 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org,
	I915-ci-infra@lists.freedesktop.org
  Cc: Konieczny, Kamil

[-- Attachment #1: Type: text/plain, Size: 2826 bytes --]

Hi all,

Following up on the CI report for:

  tests/intel/xe_vm: Add support for overcommit tests (rev9)

The reported CI issues are not regressions caused by this patch.

This series introduces new xe_vm overcommit test cases. As expected:
- The new tests pass on supported platforms
- Some tests are reported as SKIP on specific platforms/configurations
These SKIPs are expected behavior for the newly added coverage (dependency on vram)  and do not indicate
functional issues.

There are no changes to existing test behavior and no regressions observed.

Thanks,
Sobin


From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Tuesday, April 28, 2026 4:42 PM
To: Thomas, Sobin <sobin.thomas@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.FULL: failure for tests/intel/xe_vm: Add support for overcommit tests (rev9)

Patch Details
Series:
tests/intel/xe_vm: Add support for overcommit tests (rev9)
URL:
https://patchwork.freedesktop.org/series/163579/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/index.html
CI Bug Log - changes from XEIGT_8874_FULL -> XEIGTPW_15067_FULL
Summary

FAILURE

Serious unknown changes coming with XEIGTPW_15067_FULL absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15067_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (2 -> 2)

No changes in participating hosts

Possible new issues

Here are the unknown changes that may have been introduced in XEIGTPW_15067_FULL:

IGT changes
Possible regressions

  *   igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer (NEW):
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15067/shard-lnl-5/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html> +4 other tests skip

New tests

New tests have been introduced between XEIGT_8874_FULL and XEIGTPW_15067_FULL:

New IGT tests (5)

  *   igt@xe_vm@overcommit-fault-vram-lr:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 12.55] s
  *   igt@xe_vm@overcommit-fault-vram-lr-no-overcommit:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 5.41] s
  *   igt@xe_vm@overcommit-nonfault-vram-lr-defer:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 2.00] s
  *   igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 2.99] s
  *   igt@xe_vm@overcommit-nonfault-vram-no-lr:
     *   Statuses : 1 pass(s) 1 skip(s)
     *   Exec time: [0.0, 2.23] s



[-- Attachment #2: Type: text/html, Size: 23048 bytes --]

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

end of thread, other threads:[~2026-04-28 13:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-28  3:25 [PATCH i-g-t v13 0/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
2026-04-28  3:25 ` [PATCH i-g-t v13 1/2] lib/xe: Add failable variant of xe_vm_bind_lr_sync() Sobin Thomas
2026-04-28  3:25 ` [PATCH i-g-t v13 2/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
2026-04-28  4:27 ` ✓ i915.CI.BAT: success for tests/intel/xe_vm: Add support for overcommit tests (rev9) Patchwork
2026-04-28  4:37 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-28 10:16 ` ✓ i915.CI.Full: " Patchwork
2026-04-28 11:11 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-28 12:17   ` Thomas, Sobin
2026-04-28 13:36   ` Thomas, Sobin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox